inputParser does not support code generation, is that true?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Honglei Chen
le 5 Déc 2015
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 commentaires
Voir également
Catégories
En savoir plus sur Argument Definitions dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!