Why is the sinc function in Mathematica is different from Matlab
e.g. sinc(pi/2) in Matlab gives -0.1977 however in Mathematica it gives Sinc[Pi/2] = -0.0544021
Also the plotting results were totally different. In Matlab here is the code clc clear all close all
t=linspace(-10,10,2000+1); t(end)=[]; y=sinc(t); figure hold on plot(t,y)
///////////////////////////////////////////////////// in Mathematica Plot[Sinc[x],{x,-10,10}]