Clear Filters
Clear Filters

inputParser not supported by MATLAB Coder

29 views (last 30 days)
Martin Ryba
Martin Ryba on 15 Jul 2024 at 20:33
Edited: Matt J on 15 Jul 2024 at 22:55
I started to get into the habit of using inputParser to manage construction options to MATLAB classes I create. It just seems like the cleanest, most future-proof way to go about doing it. Now, I just hit a very annoying brick wall. I wanted to run one of these through MATLAB Coder to make a C++ version to at least serve as a template for a bit of production code. BOOM! MATLAB Coder doesn't like functions/classes that use inputParser. Is there anyone who's found a good workaround?

Accepted Answer

David Fink
David Fink on 15 Jul 2024 at 20:54
Many of the use cases handled by inputParser are now supported by the arguments block, which supports code generation.
This modern syntax includes support for required, optional, repeating, and named arguments, argument validation, and default values.
  2 Comments
Martin Ryba
Martin Ryba on 15 Jul 2024 at 22:14
Ah, OK. So, yet another method to do something that I need to learn. I wish the documentation for inputParser indicated that it is effectively deprecated and that this is the "right" way to do it.
Matt J
Matt J on 15 Jul 2024 at 22:53
Edited: Matt J on 15 Jul 2024 at 22:55
inputParser can't be deprecated, because it has functionality that is still not supported by the newer framework, e.g., StructExpand.

Sign in to comment.

More Answers (0)

Categories

Find more on Manage Products in Help Center and File Exchange

Products


Release

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!