matlab中ezplot函数问题,具体描述如下.MATLAB 源程序为ft = sym('exp(-2*t)*Heaviside(t)');Fw = fourier(ft);subplot(211)ezplot(abs(Fw));grid ontitle('幅度谱')phase = atan(imag(Fw)/real(Fw));subplot(212)ezplot(phase);grid ontitle('相位
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/25 03:26:53
matlab中ezplot函数问题,具体描述如下.MATLAB 源程序为ft = sym('exp(-2*t)*Heaviside(t)');Fw = fourier(ft);subplot(211)ezplot(abs(Fw));grid ontitle('幅度谱')phase = atan(imag(Fw)/real(Fw));subplot(212)ezplot(phase);grid ontitle('相位
matlab中ezplot函数问题,具体描述如下.
MATLAB 源程序为
ft = sym('exp(-2*t)*Heaviside(t)');
Fw = fourier(ft);
subplot(211)
ezplot(abs(Fw));grid on
title('幅度谱')
phase = atan(imag(Fw)/real(Fw));
subplot(212)
ezplot(phase);grid on
title('相位谱')
ezplot(abs(Fw));这句错在哪里了?把其中的Fw换成ft就可以,这是为什么.后面的ezplot(phase)当然也是错的.本人是刚刚使用matlab.
matlab中ezplot函数问题,具体描述如下.MATLAB 源程序为ft = sym('exp(-2*t)*Heaviside(t)');Fw = fourier(ft);subplot(211)ezplot(abs(Fw));grid ontitle('幅度谱')phase = atan(imag(Fw)/real(Fw));subplot(212)ezplot(phase);grid ontitle('相位
Fw是 傅立叶变换后的 里面含有虚数 直接ABS是有错误的 (或者可能傅立叶变换后 Fw是无限长的 不能进行画图)