📄 cshift.m
字号:
%FUNCTION: circular shift the vector.
%cshift(xx,nn) circular shift vector xx to nn points.
function yy=cshift(xx,nn);
lenx=length(xx);
nn=nn-lenx*floor(nn/lenx);
yy(nn+1:lenx)=xx(1:lenx-nn); yy(1:nn)=xx(lenx-nn+1:lenx);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -