0

假设我有以下代码:

%%input dialog box%%%
prompt = {'Enter gain:','Enter range:'};
dlg_title = 'Enter values';
num_lines= 1;
def     = {'20','256'};       %default
answer  = inputdlg(prompt,dlg_title,num_lines,def);

%%%to get the two entered values%%%%
A = getfield(answer,{1});    %first input field
A = str2double(A);
B = getfield(answer,{2});   %second input field
B = str2double(B);

使用“带有结构的动态字段名称而不是getfield”是什么意思?

如何对复杂且小于零的输入值使用循环,以请求用户提供另一个兼容输入?

我尝试了以下循环,但它不起作用。为什么?

while isnan(A) || ~isreal(A) || A<0
    prompt = {'Enter gain:'%'Enter range:'};
    dlg_title = {'undefine!!'};
    num_lines= 1;
    def     = {'',''}%{'20','256'};       %default
    answer  = inputdlg(prompt, dlg_title, num_lines, def);
    A = getfield(answer,{1});    %first input field
    A = str2double(A);
    %A = str2double(input('Enter the value of module(mm) : ', 's'));
end
4

1 回答 1

0

getfield不需要调用,坦率地说没有任何意义。该变量answer是一个cell数组而不是一个struct所以你不需要使用getfield 粘贴代码的后半部分可以替换为:

A = str2double( answer{1} );
B = str2dobule( answer{2} );

关于循环直到您获得有效输入。如果输入有效,您可以使用boolean标志、a while、循环和 a function(让我们称之为areInputsValid())返回 true

validInput = false;

while (~validInput)
  % input dialog box
  %  code here

  % get the two entered values
  &  code here

  validInput = areInputsValid(A, B);
end
于 2012-12-28T17:12:48.043 回答