Clear Filters
Clear Filters

Exporting array

24 views (last 30 days)
Mohamed mohamed
Mohamed mohamed on 28 Jun 2011
Hello guys, I have rather simple question: how can I save a matrix into file i.e. (.mat)?? I have matrix of 16*16 in my code and I want to save it into c:/'FileName'.mat
Cheers

Answers (2)

Fangjun Jiang
Fangjun Jiang on 28 Jun 2011
save FileName VariableName

Sean de Wolski
Sean de Wolski on 28 Jun 2011
save('FileName.mat','yourmatrix')
  3 Comments
Sean de Wolski
Sean de Wolski on 28 Jun 2011
save(OutputFile,'A')
Note the single quotation. Yes, I hate that subtle fact too.
Fangjun Jiang
Fangjun Jiang on 28 Jun 2011
Or, use command format
save OutputFile A

Sign in to comment.

Categories

Find more on Data Type Identification in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!