Amin
Amin

Reputation: 261

Save data in MATLAB

I am trying to save a variable in .mat format and update and APPEND the NEW contents of THIS variable each time a loop is finished to avoid memory blow up. I have searched a bit and think the best way is structures. But still think there should be an straight way to do that. Anybody can give me an example to how to do that?

Upvotes: 0

Views: 63

Answers (1)

Daniel
Daniel

Reputation: 36710

You could try using matfile to write without loading the file.

Upvotes: 1

Related Questions