|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
用下面程序段求脉冲响应,其中H11,H12,H21,H22是频响函数的分量
subplot(221)
f=ifft(H11);
plot(w,f);
ylabel('IRF');
grid on
subplot(222)
f=ifft(H12);
plot(w,f);
ylabel('IRF');
grid on
subplot(223)
f=ifft(H21);
plot(w,f);
xlabel('Time(sec)');
ylabel('IRF');
grid on
subplot(224)
f=ifft(H22);
plot(w,f);
xlabel('Time(sec)');
ylabel('IRF');
grid on
结果如附件,好像不对呀!
那出问题呀!!请指教!
[ 本帖最后由 eight 于 2007-11-18 11:28 编辑 ] |
|