Filter löschen
Filter löschen

MAT file

1 Ansicht (letzte 30 Tage)
Sivakumaran Chandrasekaran
How to edit a mat file
  1 Kommentar
TAB
TAB am 3 Apr. 2012
http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Jonathan Sullivan
Jonathan Sullivan am 3 Apr. 2012
What do you want to edit? Do you want to change a variable? Add a variable? Assuming it's the latter, you could just use the -append flag.
For example
x = rand(100,1);
save('MyData.mat','x'); % initial save
y = rand(100,1);
save('MyData.mat','y','-append'); % add a variable

Kategorien

Mehr zu Standard File Formats finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by