Will m files work that were made in matlab R2018a work in matlab R2017b?
1 view (last 30 days)
Show older comments
Hello.
I want to go from matlab R2018a to R2017b just so that all my programs will be in 2017, so they can be easily integrated.
My concern is: Will my m files work that were made in matlab R2018a work in matlab R2017b?
They are not very complicated scripts. For example, they include ode45, plot, quad, fprintf, fopen, fclose, and array and matrix operations
Thank you for the help.
0 Comments
Accepted Answer
Rik
on 15 May 2019
You can check the release notes to see if you're using functions that were introduced in R2018a, but I suspect from your description that everything should compatible.
Things to watch out for in terms of compatibility are .fig files (avoid if possible), Simulink models, and complex interactions with graphical elements. The wider the gap in time between the releases you want to be compatible with, the more important these considerations become. Forward compatibility is usually a lot better than backward compatibility (with big jumps in R13 to R14 and R2014a to R2014b).
1 Comment
Walter Roberson
on 16 May 2019
Sometimes the problem is not that the function was just introduced in later release but rather that a new option has been added. New options do not always make it into the release notes.
More Answers (0)
See Also
Categories
Find more on Desktop 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!