Scilab 5.3.3
- 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
Scilab help >> Signal Processing > mfft
mfft
multi-dimensional fft
Calling Sequence
[xk]=mfft(x,flag,dim)
Arguments
- x
x(i,j,k,...)input signal in the form of a row vector whose values are arranged so that the i index runs the quickest, followed by the j index, etc.- flag
(-1) FFT or (1) inverse FFT
- dim
dimension vector which gives the number of values of
xfor each of its indices- xk
output of multidimensional fft in same format as for
x
Description
FFT for a multi-dimensional signal
For example for a three dimensional vector which has three points along its first dimension, two points along its second dimension and three points along its third dimension the row vector is arranged as follows
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)]
and the dim vector is: dim=[3,2,3]
Authors
C. B.
| << mese | Signal Processing | mrfit >> |