如何用MATLAB绘制函数(sin(at))/(at)的图像a=2 其中 -2π≤t≤2π谢谢!
syms t; a=2; f(t)=sin(a*t)/(a*t) x=-2*pi:0.01:2*pi; plot(x,f(x))