解析函数输入

时间:2019-08-28 20:42:09

标签: matlab parsing input octave

这是我的here的一个较早问题的跟进。尽管通过使用addParamValue和推荐功能已解决了上述问题中的紧迫问题,但使用addOptional仍然存在问题。代码流为:

parser = inputParser() ;
parser.FunctionName = "mdDelay" ;
defaultMaxLag = 10 ;
checkMaxLag = @(x) validateattributes_with_return_value(x, {'numeric'}, {'positive', 'numel', 1}) ;

其中validateattributes_with_return_value是Octave的validateattributes的包装,以便返回true或false

function retval = validateattributes_with_return_value( varargin )
  try
    validateattributes( varargin{ : } ) ;
    retval = true ;
  catch
    retval = false ;
  end_try_catch
endfunction

然后使用其中一个

addRequired( parser , 'data' , @checkdata ) ;
addOptional( parser , 'maxLag' , defaultMaxLag , checkMaxLag ) ;

addRequired( parser , 'data' , @checkdata ) ;
parser.addOptional( 'maxLag' , defaultMaxLag , checkMaxLag ) ;

其中checkdata是对输入数据是数字矢量还是矩阵的简单检查

function check = checkdata( x )
   check = false;
   if (~isnumeric(x))
       error('Input is not numeric');
   elseif (numel(x) <= 1)
       error('Input must be a vector or matrix');
   else
   check = true;
   end
endfunction

之后

parse( parser , data , varargin{:} ) ;

失败,并显示错误消息

error: mdDelay: argument 'MAXLAG' is not a valid parameter

如此称呼

tau = mdDelay( data , 'maxLag' , 25 ) ;

在这种情况下,数据只是2000行乘3列的数值矩阵。

我试图更改输入在代码中的显示顺序,以为“位置”可能是一个问题,但无济于事。

这不是主要的问题,因为我现在可以使用addParamValue来运行代码,但这也许可以突出显示Octave中的另一个已知错误?

1 个答案:

答案 0 :(得分:1)

您使用的addOptional错误。可选参数是可选参数,由其在参数列表中的位置标识。因此,您应该这样称呼它:

mdDelay (data, 25); # 25 is the value for maxLag

由于将'maxLag'(字符串)作为maxLag(选项)的值而传递,因此出现错误:

mdDelay (data, 'maxLag', 25); # 'maxLag' is the value for maxLag

当然'maxLag'测试失败:

checkMaxLag = @(x) validateattributes (x, {'numeric'}, {'positive', 'numel', 1}) ;
checkMaxLag('maxLag') # the string is not numeric