InputParser with single argument (not pair)
1 次查看(过去 30 天)
显示 更早的评论
How can I make a Inputparser to react to a single optional argument instead of a pair. For example, that I can do:
func('help')
instead of
func('help',true)
Note that 'help' is an optional argument, and I want it to be can be called in any order.
Does anybody have an idea how to do this?
Any help would be appreciated!
0 个评论
回答(1 个)
Walter Roberson
2018-1-22
inputParser cannot handle that situation. Only leading arguments can be values by themselves, and those are positional, not able to appear anywhere.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Argument Definitions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!