画不出图。
显示 更早的评论
我想绘制St函数St=5*cos(80*pi*t)+10*cos(400*pi*t);这个的图像,画出之后有图像界面但是没有图,求教是哪里出问题了
Fh=200;
Fl=40;
B=Fh-Fl ;
Fs=2*B+2*(Fh-B);
y=[];
x=0:(1/0.5*Fs):0.1;
i=1;
for t=0:(1/0.5*Fs):0.1
St=5*cos(80*pi*t)+10*cos(400*pi*t);
y(i)=St;
i=i+1;
end
figure;
plot(x,y);
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 快速入门 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!