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.