Save a matrix in MATLAB

270 次查看(过去 30 天)
rihab
rihab 2015-11-4
评论: Adam 2018-6-25
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?

采纳的回答

Adam
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
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;
Adam
Adam 2018-6-25
It works fine for me. I get the same matrix in file as I do in my workspace.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by