Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool to check compatiblity with Matlab versions?

I have several scripts (m Files) and our customers have different Matlab versions. Is there a tool to check for compatiblity of each script with certain Matlab versions?

like image 960
Durin Avatar asked Jul 18 '12 08:07

Durin


People also ask

Are MATLAB versions backwards compatible?

All MATLAB license types permit access to older releases of MATLAB, going back to R11 for most licenses. License files and file installation keys are also backwards compatible, but there is a small difference between how backwards compatibility is implemented between individual and network licenses.

Which version of MATLAB is compatible with Windows 10?

MATLAB R2015a and later is supported on Windows 10.

How do I run an older version of MATLAB?

Direct link to this answerGo to https://www.mathworks.com/downloads. Sign in to your MathWorks account if you are not already signed in. On the left side of the screen, select the release you want to download. You may need to click on show more to find the release you are looking for.


1 Answers

You might be able to do what you want with the checkcode function. Alternatively, you can use functions such as version and verLessThan to write your scripts and functions such that they check which version they are being run on and take appropriate action.

like image 181
High Performance Mark Avatar answered Nov 01 '22 18:11

High Performance Mark