Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the Matlab input parser and want to parse a function handle using this code:

p = inputParser;
p.addOptional('progresscallback', 0, @(x) isa(x,'function_handle') );
p.parse(varargin{:});

This works well for a given function handle, but fails for no handle with

Argument 'progresscallback' failed validation @(x)isa(x,'function_handle').

Now I wonder how to contruct the testing function or the default value to make it work.

share|improve this question

1 Answer

If you just want to accept either empty or function handle inputs, you can modify the testing function like this:

@(x) isempty(x) || isa(x,'function_handle')

The short-circuit OR (||) won't evaluate the second half of the test if the first one is already true. BTW, you may also want to set your default value to [].

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.