inputParser with only a value, not a name-value pair

조회 수: 17 (최근 30일)
Gregory Dachner
Gregory Dachner 2018년 7월 13일
댓글: Fangjun Jiang 2018년 7월 18일
Is it possible to use inputParser with only a value, not a name-value pair. So that when you send a function a specific argument, the argument is automatically set to a variable, without a variable name needed to be given in the function call?
Instead of
a = findArea(13,'shape','square');
You could just send findArea 'square', like:
a = findArea(13,'square');
And within the function, it would recognize that square can only be a shape and set shape's value to 'square'.

답변 (1개)

Fangjun Jiang
Fangjun Jiang 2018년 7월 13일
Yes. You would make that a required argument, not an optional argument.
function a = findArea(width,Shape,varargin)
....
addRequired(p,'shape',defaultShape,... @(x) any(validatestring(x,expectedShapes)));
  댓글 수: 2
Gregory Dachner
Gregory Dachner 2018년 7월 17일
I'm not sure what you expect this to do, but it breaks the function, causes all inputs to return the error:
Error using inputParser/addRequired Too many input arguments.
Fangjun Jiang
Fangjun Jiang 2018년 7월 18일
should be
addRequired(p,'shape', @(x) any(validatestring(x,expectedShapes)));

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Argument Definitions에 대해 자세히 알아보기

태그

제품


릴리스

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by