注意:此页面搜索的是所有试题
编程绘制y=sin(t)/t的曲线,t的定义域是[-5p,5p],绘图时加网格。
参考程序如下:
t=( ):0.1:( );
y=sin(t)./t;
plot(t,y);
grid (多选题)
.-5*pi
.sin(t)
.5*pi
.t

参考答案