26. 七、积分变换
1. Fourier积分变换
F = fourier( f ) 对符号单值函数 f 中的缺省变量 x(由命令findsym确定)计算Fourier变换形式
例:
syms x
f = sin(x)*exp(-x.^2)
F = fourier(f)
注:用eval函数计算得出的表达式
f = ifourier(F) 逆Fourier积分变换
Y = fft(X) 快速Fourier变换
27. 2. Laplace变换
L = laplace(F) 输出参量L = L(s)为有缺省符号自变量t的标量符号对象F的Laplace变换
例:
syms t
f1= sqrt(t);
L1 = laplace(f)
F = ilaplace(L) 逆Laplace变换
3. Z变换
F = ztrans(f ) 对缺省自变量为n的单值函数f计算z-变换