说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 离散快速傅立叶变换
1)  DFT (Discrete Fourier Transform)
离散快速傅立叶变换
2)  Fast Fourier Transform Algorithm
快速离散傅立叶变换
1.
The information of the spot welding nugget is included in the welding current waveform,the diameter of the nugget is related to the spectrum value of the Fast Fourier Transform Algorithm(FFT)for current waveforms.
点焊焊接电流波形中包含了熔核形成及熔核大小的相关信息,电流波形快速离散傅立叶变换(FFT)后的谱线幅值,与点焊熔校直径之间有明显的对应关系。
3)  FFT
快速傅立叶变换
1.
Roll eccentricity compensation control based on FFT;
基于快速傅立叶变换的轧辊偏心补偿控制
2.
The Implementation of Fast Fourier Transform (FFT) in DSP;
快速傅立叶变换(FFT)在数字信号处理器(DSP)上的实现
3.
The Analysis of the Phase-Shift Error of the PMP Phase-Shift Device Using FFT Method;
利用快速傅立叶变换分析PMP相移机构的相移误差
4)  fast Fourier transform
快速傅立叶变换
1.
Two different dot superimposition images processed by fast Fourier transform ( FFT) are compared and analyzed particularity.
通过对线条形网点图像的实际打样与“欧几里得”网点打样样张的比较,重点阐述了线条形网点在印刷复制过程中的网点频率传递特性,在论述中,笔者对采用快速傅立叶变换后获得的网点叠印图像的频谱进行了较为细致地分析,得出影响人眼观察印刷图像的主要频率值及其原因。
2.
For the research on Milankovitch cycle of the Permian Changxing formation in northeastern Sichuan basin,the frequency spectrum of logging curves was analyzed with fast Fourier transform function offered by Matlab language.
为了研究川东北地区上二叠统长兴组中的米兰科维奇周期,采用Matlab提供的快速傅立叶变换数学函数,对该区测井曲线的频谱进行了分析。
3.
Theory and character of Fast Fourier Transform or Moment Invariants were studied and algorithm of image feature extraction based on FFT and moment invariants was put forward and applied to classification of surface defects of medium and heavy plates.
研究了快速傅立叶变换、不变矩的原理及特点,并应用于热轧中厚板表面缺陷图像特征提取。
5)  Fast Fourier Transform(FFT)
快速傅立叶变换
1.
The arithmetic operation load is about half of that in the Fast Fourier Transform(FFT) algorithm.
利用快速Hartley变换算法求解鳞状因子循环实线性方程组,该算法比快速傅立叶变换(FFT)减少近一半的计算量。
2.
A new method has high precision and efficiency to solve the structural dynamic equation is obtained by combining the numerical particular solution of nonhomogeneous equation solved by fast Fourier transform(FFT) with the gene.
离散结构动力方程为差分方程,并假设始、末时刻位移已知,将初值问题形式上转化为边值问题,然后利用快速傅立叶变换(FFT)进行求解,从而得到非齐次结构动力方程的一个数值特解。
3.
The rubbing was identified by processing vibration signals using fast Fourier transform(FFT),understanding color maps by point of energy,and also combining time-domain charts,frequency charts and waterfall maps.
该方法以快速傅立叶变换法处理测振信号,以能量的观点理解振动色谱图,并结合时域图、频谱图和瀑布图对转子是否存在碰磨做出判断。
6)  fast Fourier transformation
快速傅立叶变换
1.
A study was performed on the PIV algorithm based on fast Fourier transformation(FFT),and the PIV program was compiled and verified.
在粒子图像测速原理的基础上研究了基于快速傅立叶变换的粒子图像测速算法,并编制算法程序进行验证。
2.
A leakage point positioning systerm is developed,which is based on correlation analysis of fast Fourier transformation for locationing the leakage in the pipe.
针对管道漏点定位问题,研制出了一套基于快速傅立叶变换的相关分析法管道泄漏点定位系统。
3.
A calculation method based on fast Fourier transformation and micromagnetism(FFTM) is presented.
提出了一种具有快速傅立叶变换的微磁学(FFTM)方法,并应用于二维纳米磁性系统。
补充资料:快速傅立叶变换

快速傅氏变换 英文名是fast fourier transform

快速傅氏变换(fft)是离散傅氏变换(dft)的快速算法,它是根据离散傅氏变换的奇、偶、虚、实等特性,对离散傅立叶变换的算法进行改进获得的。它对傅氏变换的理论并没有新的发现,但是对于在计算机系统或者说数字系统中应用离散傅立叶变换,可以说是进了一大步。

设x(n)为n项的复数序列,由dft变换,任一x(m)的计算都需要n次复数乘法和n-1次复数加法,而一次复数乘法等于四次实数乘法和两次实数加法,一次复数加法等于两次实数加法,即使把一次复数乘法和一次复数加法定义成一次“运算”(四次实数乘法和四次实数加法),那么求出n项复数序列的x(m),即n点dft变换大约就需要n2次运算。当n=1024点甚至更多的时候,需要n2=1048576次运算,在fft中,利用wn的周期性和对称性,把一个n项序列(设n=2k,k为正整数),分为两个n/2项的子序列,每个n/2点dft变换需要(n/2)2次运算,再用n次运算把两个n/2点的dft变换组合成一个n点的dft变换。这样变换以后,总的运算次数就变成n+2(n/2)2=n+n2/2。继续上面的例子,n=1024时,总的运算次数就变成了525312次,节省了大约50%的运算量。而如果我们将这种“一分为二”的思想不断进行下去,直到分成两两一组的dft运算单元,那么n点的dft变换就只需要nlog2n次的运算,n在1024点时,运算量仅有10240次,是先前的直接算法的1%,点数越多,运算量的节约就越大,这就是fft的优越性。

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条