setallfieldvalues.m

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

M
32
字号
function setallfieldvalues(block)%SETALLFIELDVALUES Set field numbers and mask values 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'                                                         %                                                              %   The mask parameter values are set in a similar fashion except that a %   mask variable called 'fooBar' will be called 'maskFoobar' in the %   callers workspace.                                     %   Copyright 1996-2001 The MathWorks, Inc.%   $Revision: 1.3 $  $Date: 2001/04/05 04:47:27 $    evalStr1 = '';    evalStr2 = '';    wsStr = get_param(block,'MaskWSVariables');    	MN = deal({wsStr.Name});        for n=1:length(MN)        varName  = [upper(MN{n}(1)) MN{n}(2:end)];        evalStr1 = [evalStr1 sprintf('idx%s = %d;', varName, n)];        evalStr2 = [evalStr2 sprintf('assignin(''caller'', ''mask%s'', wsStr(%d).Value);', varName, n)];    end;        evalin('caller',evalStr1);    eval(evalStr2);return;

⌨️ 快捷键说明

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