Why is the inputParser method addParamValue not recommended and how does it differ from addParameter?

1 view (last 30 days)
Basically the question above..
I've been using the inputParser class for a little while and mostly use addParamValue for name/value pairs. I've just upgraded to 2014b. I can't seem to see much of a difference between addParamValue and addParameter.
Is it simply the addition of matchPriorityValue input argument? If so, why couldn't that just be appended to addParamValue in some future release?
  1 Comment
guoqiang qiu
guoqiang qiu on 25 Aug 2016
I have met the same problem. My Matlab version is 2012b, however, I cannot find addParameter function anymore. I am not sure whether addParamVaule can replace addParameter?

Sign in to comment.

Answers (1)

Adam
Adam on 25 Aug 2016
addParameterValue is a function from R2007b, addParameter was added in R2013b clearly with the intention of replacing it.
So addParameter will do mostly the same and should always be used if you have the relevant version of the software. If you don't then continue to use the older version. That it is 'not recommended' presumably just means there is now a newer version of the function that is more stable and being actively supported whereas I imagine addParameterValue is no longer being supported so, for example, will not undergo any performance improvements.

Categories

Find more on Argument Definitions in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!