Save a matrix in MATLAB
239 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a 100x100 matrix in MATLAB and I want to save it in matlab format. Is there a way to do so in MATLAB?
0 Kommentare
Akzeptierte Antwort
Adam
am 4 Nov. 2015
Bearbeitet: Adam
am 25 Jun. 2018
save( filename, 'matrixName' )
e.g.
myMatrix = rand( 100, 100 );
filename = 'C:\Stuff\Somefile.mat';
save( filename, 'myMatrix' );
Be sure to use the .mat extension for your file.
6 Kommentare
Luthando Maqondo
am 24 Jun. 2018
This does not save the Matrix as it is, it stored a struct version of if and now I can't index the elements in side the matrices. Even the size(Matrix) function gives a 1x1 for a matrix expected to be 4 dimentional;
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!