setfieldindexnumbers.m

来自「WCDMA FDD Simulink Models」· M 代码 · 共 24 行

M
24
字号
function setfieldindexnumbers(block)%SETFIELDINDEXNUMBERS Set index numbers in the callers workspace.%%   The field numbers will have the same name (and case) as the mask variable %   names, BUT they will have their first initial capitalized and preceded %   by 'idx'. For example a Dialog variable 'fooBar' creates an index                    %   called 'idxFooBar'                                                         %   Copyright 1996-2001 The MathWorks, Inc.%   $Revision: 1.3 $  $Date: 2001/04/05 04:47:27 $    evalStr1 = '';       MN = get_param(block,'MaskNames');    for n=1:length(MN)        varName  = [upper(MN{n}(1)) MN{n}(2:end)];        evalStr1 = [evalStr1 sprintf('idx%s = %d;', varName, n)];    end;        evalin('caller',evalStr1);return;

⌨️ 快捷键说明

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