retrieve mat-file version
120 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
David T_
am 30 Aug. 2012
Kommentiert: Walter Roberson
am 23 Aug. 2017
Hello community,
I want to use the MATFILE command to access specific data in .mat-files. Is there a function which returns true if the .mat-file format is 'v7.3' and false otherwise?
I know you can check this in the command window using
type myfile.mat
However you cannot use TYPE within a function, which is what I want to do.
Thanks in advance
David
0 Kommentare
Akzeptierte Antwort
Daniel Shub
am 30 Aug. 2012
You can use evalc to capture the output of type
function tf = getmatv(fname)
x = evalc(['type(''', fname, ''')']);
tf = strcmp(x(2:20), 'MATLAB 7.3 MAT-file');
end
4 Kommentare
Daniel Shub
am 30 Aug. 2012
I was really answering the "you cannot use TYPE within a function" part of the question. I am not sure you want to use TYPE, but I wanted to provide a way to do it.
Walter Roberson
am 23 Aug. 2017
You can also use fileread() to pull in the entire file, and then examine the first few characters of it.
Weitere Antworten (1)
Tom
am 30 Aug. 2012
type(FileName)
should work fine, where FileName is a string containing the file name, e.g.
FileName='myfile.mat'
0 Kommentare
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!