inputParser does not support code generation, is that true?
5 次查看(过去 30 天)
显示 更早的评论
I started to realize an awful lot of my code archive will be rendered useless under the matlab coder. Because simple system functions such as 'inputParser' seems to be mercilessly excluded by the code generator. Can somebody enlighten my woeful heart?
0 个评论
回答(1 个)
Honglei Chen
2015-12-5
It's not supported. However, if you can do your own parsing in a different branch. For example,
if coder.target('MATLAB')
% use inputParser
else
% your parser
end
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!