showl.m

来自「阵列信号处理的工具箱」· M 代码 · 共 26 行

M
26
字号
function showl(list)% RECVAR, A package for new data types in Matlab 4. % (c) FOA 1997. See the file rvright.m for copyright notice.%% function showl(list)%% Shows the contents av all elements in a list on the screen. It % is rather like typing the name of a normal Matlab matrix without an% ending semicolon ';'.%%  list ListT%% Start        : 951221 Svante Bj鰎klund (svabj).% Latest change: $Date: 1998/05/12 10:42:11 $ $Author: svabj $.% $Revision: 2.2 $% *****************************************************************************while (~islastl(list))  disp(get1stl(list))  list = getrestl(list);end%whiledisp(get1stl(list))

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?