sinc(t)产生的是抽样函数sin(πt)/πt
而sinc(t/π)就是把上式中的t换成t/π,那么表示就是sint/t这个抽样函数,我是这么理解的
sinc( t)=sin(pi*t)/(pi*t).是matlab内部函数。pi就是3.141592653.。。。你懂得
在command window 里面输入help sinc
SINC Sin(pi*x)/(pi*x) function.
SINC(X) returns a matrix whose elements are the sinc of the elements
of X, i.e.
y = sin(pi*x)/(pi*x) if x ~= 0
= 1 if x == 0
where x is an element of the input matrix and y is the resultant
output element.
% Example of a sinc function for a linearly spaced vector:
t = linspace(-5,5);
y = sinc(t);
plot(t,y);
xlabel('Time (sec)');ylabel('Amplitude'); title('Sinc Function')
抽样函数,搜一下香农采样公式