📄 get1stl.m
字号:
function data = get1stl(inList)% RECVAR, A package for new data structures in Matlab. % (c) FOA 1998. See the file rvright.m for copyright notice.%% function data = get1stl(inList)%% Gets the first element of a list.% Matlab 5 compatibility version.%% Start : 970819 Svante Bj鰎klund (svabj).% Latest change: $Date: 1998/05/06 16:17:16 $ $Author: svabj $.% $Revision: 1.1 $% *****************************************************************************if islist(inList) data = inList{1};else error('Input parameter is no list.')end%if
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -