Scilab 5.3.1
- Scilab help
- Signal Processing
- How to
- Signal
- analpf
- bilt
- buttmag
- casc
- cepstrum
- cheb1mag
- cheb2mag
- chepol
- convol
- corr
- cspect
- czt
- detrend
- dft
- ell1mag
- eqfir
- eqiir
- faurre
- ffilt
- fft
- fft2
- fftshift
- filt_sinc
- filter
- find_freq
- findm
- frfit
- frmag
- fsfirlin
- group
- hank
- hilb
- hilbert
- iir
- iirgroup
- iirlp
- intdec
- jmat
- kalm
- lattn
- lattp
- lev
- levin
- lindquist
- mese
- mfft
- mrfit
- %asn
- %k
- %sn
- phc
- pspect
- remez
- remezb
- rpem
- sincd
- srfaur
- srkf
- sskf
- syredi
- system
- trans
- wfir
- wiener
- wigner
- window
- yulewalk
- zpbutt
- zpch1
- zpch2
- zpell
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
mfft
多次元FFT
呼び出し手順
[xk]=mfft(x,flag,dim)
パラメータ
- x
x(i,j,k,...)
行ベクトル形式の入力信号で, その値はiインデックスが最初,次にjインデックスが続く,... といったように並べます.- flag
(-1) FFT または (1) 逆FFT
- dim
各インデックスについて
x
の値の数を指定するベクトルの次元- xk
多次元FFTの出力で,形式は
x
と同じ
説明
多次元信号のFFT
例えば,3次元ベクトルの場合は最初の次元に 3つの点を有し,2番目の次元に2つの点, 3番目の次元方向の3個の点,といったように 行ベクトルは以下のように並べられます
x=[x(1,1,1),x(2,1,1),x(3,1,1), x(1,2,1),x(2,2,1),x(3,2,1), x(1,1,2),x(2,1,2),x(3,1,2), x(1,2,2),x(2,2,2),x(3,2,2), x(1,1,3),x(2,1,3),x(3,1,3), x(1,2,3),x(2,2,3),x(3,2,3)]
dim
ベクトルは次のようになります: dim=[3,2,3]
作者
C. B.
<< mese | Signal Processing | mrfit >> |