MATLAB: Problem with function sinc

errorMATLABmatlab functionsinc

hello everyone
i have a problem with the function sinc (i'm not so expert i started to use mathlab 3 months ago) and i wrote this:
x = 0:pi/100:2*pi;
y=sinc(x);
but i have an error:
Undefined function 'sinc' for input arguments of type 'double'.
someone can help me? thanks

Best Answer

Adapt its formula as follows:
x = 0:pi/100:2*pi;
y=sin(pi*x)./(pi*x);%sinc function
plot(y)