计算-90°--90°之间的正弦值 matlab
问题描述:
计算-90°--90°之间的正弦值 matlab
答
%以下程序数据输入为角度值,计算为弧度值
x=(-90:0.1:90)/180*pi;
for i=1:length(x)
y=sin(x);
end
plot(x,y)