www.gusucode.com > MATLAB GUI设计的实例,学习用matlab设计界面的很好的参考资料 > matlab_GUI/sigshif.m

    function[y,n]=sigshif(x,m,n0)
%序列移位 y(m+k)=x(m)
n=m+n0;
y=x;