MATLAB: X(t)=2+3*Π4(t)*sinc(t)

matlab function

I'm not sure where i am going wrong.

Best Answer

Hi,
Kindly have a look at the following code:
x = linspace(-5,5);
y = 2+3*pi*4*x.*sinc(x);
plot(x,y)
Links:
Thanks