How i can open a file that is written using matlab 2013 by using matlab 2009?
Show older comments
I have a file that is written using matlab 2013, and i want to open it using matlab 2009.
1 Comment
Accepted Answer
More Answers (2)
Azzi Abdelmalek
on 10 Feb 2014
Edited: Azzi Abdelmalek
on 10 Feb 2014
0 votes
You can open it as any text file. You can run your m-file if all functions used in your file exist in your previous version of Matlab
2 Comments
ala alemaryeen
on 10 Feb 2014
Azzi Abdelmalek
on 10 Feb 2014
I think the format of m files is the same. You will not have any problem to open them. Suppose in Matlab 2013 there is a new function called fcn1, this function can't be used in Matlab 2009.
Walter Roberson
on 10 Feb 2014
0 votes
A .fig file written in R2013 would possibly give errors when opened in R2009.
GUIDE GUIs (.m with .fig) are often not backwards compatible.
.mat files are saved by default with -v7 format. Baring bugs, a .mat file written with the default -v7 in R2013 can be opened in R2009. However, if the .mat file contains anything other than numeric, string, struct, and cell array, then the contents might not be supported in R2009. Neural Networks are an example of something that has changed object structure between R2009 and R2013.
Image files such as .jpg are generally readable in R2009, but R2009 did not support as wide a variety of image types as R2013 does. JPEG2000 for example was not supported in R2009 (as best I recall.)
Categories
Find more on File Operations 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!