Save a matrix in MATLAB
233 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Adam
2015 年 11 月 4 日
編集済み: Adam
2018 年 6 月 25 日
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 件のコメント
Luthando Maqondo
2018 年 6 月 24 日
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;
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!