来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/12 04:32:28
MATLAB 求和 画图
t=[1,1000] w=[0.3434,2.2196] w的步长取迭代80次的平均值,e=(0,2π)的均布随机数.希望画出plot(t,y) t为自变量.
希望能得到完整的程序!
w=linspace(0.3434,2.2196,80);
t=1:1000;
for i=1:1000
y(i)=sum(sin(w*t(i)+2*pi*rand()));
end
plot(t,y);