Compatibility : get the Matlab minimum version required to run a program

11 次查看(过去 30 天)
Hey,
Is there a way to automatically know which Matlab minimum version your .m program is compatible with ? Something like the ver command maybe ?
Thanks for help.
Nicolas

采纳的回答

Rik
Rik 2019-11-25
编辑:Rik 2019-11-25
The only reliable way I have found is to actually test it. An alternative is to carefully read the documentation of every function you use to determine if you're using a syntax that was introduced later.
Edit: for a really high-level view of the changes from release to release, see this thread.
  2 个评论
Nicolas Douillet
Nicolas Douillet 2019-11-25
Yeah, looks reasonnable.
I run 2019b -the latest version-, so I would need to check all the previous ones I guess...
However, targeting the specific functions I use is quite a sure path, I agree.
The same for toolboxes, but in this case it is easier since I do not use -by far- all the toolboxes.
Thanks
Rik
Rik 2019-11-25
I haven't used it myself, but toggleToolbox might be helpful in checking what works without which toolbox.
I wouldn't test it on all releases. It depends on how far back you want to go. Personally I try to make sure my code runs of version 6.5, which often requires a different implementation (and is overkill for just about any use case).
You can generally assume if something works on two releases it will work on the releases in between, but there are some caveats. I would suggest running the current release, an early HG2 release (2014b or later), and a late HG1 release (2014a or older). Add 2011a if you want to cover 99% of users. I couldn't get anything between v7 and 2011a to work on a 64 bit Windows 10 (and even 2011a requires RunAsDate to get the splash).
If you go extreme you can also check v6.5, which is hit or mis whether or not it will run on Windows 10. I would say it is more than reasonable to assume that if someone is running a version older than 6.5 they should be able to adapt the code themselves. Especially as ~ to suppress an unused output and @ to create an anonymous function will trigger syntax errors.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by