📄 reversel.m
字号:
function outList = reversel(inList)% RECVAR, A package for new data types in Matlab 4. % (c) FOA 1997. See the file rvright.m for copyright notice.%% function outList = reversel(inList)%% Reverses the elements of a list.%% outList, inList: ListT%% Start : 970819 Svante Bj鰎klund (svabj).% Latest change: $Date: 1998/05/12 10:42:10 $ $Author: svabj $.% $Revision: 2.2 $% *****************************************************************************outList = [];outList = put1stl(get1stl(inList),outList);while (~islastl(inList)) inList = getrestl(inList); outList = put1stl(get1stl(inList),outList);end%while
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -