How i can open a file that is written using matlab 2013 by using matlab 2009?
Afficher commentaires plus anciens
I have a file that is written using matlab 2013, and i want to open it using matlab 2009.
1 commentaire
Réponse acceptée
Plus de réponses (2)
Azzi Abdelmalek
le 10 Fév 2014
Modifié(e) : Azzi Abdelmalek
le 10 Fév 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 commentaires
ala alemaryeen
le 10 Fév 2014
Azzi Abdelmalek
le 10 Fév 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
le 10 Fév 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.)
Catégories
En savoir plus sur File Operations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!