setr.m

来自「阵列雷达信号处理工具箱 阵列雷达信号处理工具箱」· M 代码 · 共 29 行

M
29
字号
function M = setr(recordvar, fieldname, fieldvar)% RECVAR, A package for new data types in Matlab 4. % (c) FOA 1997. See the file rvright.m for copyright notice.%%  function M = setr(recordvar, fieldname, fieldvar)%%  Creates record variables and creates and changes the contents of fields.%%  M         RecVarT%  recordvar RecVarT or []%  fieldname StringT%  fieldvar  Any type%%  Ex:%     A = setr(A, 'frequency', 2800);	%     % Sets the field 'frequency' to the value 2800 in the record variable 'A'.%%  If 'recordvar' is not an record variable an error message is issued.%  To create a new record variable use 'recordvar' = [].%%  Start        : 951211 Svante Bj鰎klund (svabj).%  Latest change: $Date: 2000/10/13 19:53:45 $ $Author: svabj $.%  $Revision: 1.1 $% *****************************************************************************M = matvar('setr', recordvar, fieldname, fieldvar);

⌨️ 快捷键说明

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