MATLAB: How to rewrite sin(x)/x as sinc(x)

MATLAB

For example, when I type
syms x
A = sinc(x)
Matlab displays the value of A as sin(pi*x)/(x*pi), rather than keeping it at sinc(x). How can I get it to keep A as sinc(x)?

Best Answer

Try :
syms x
disp('A =')
disp('sinc(x)')
A=sinc(x);
Note: MATLAB just recognises the sinc(x) function as sin(x*pi)/(x*pi)
Related Question