snakile
snakile

Reputation: 54521

How do I write to a file in Matlab?

I have an mXn matrix of integers. I want to write the matrix to a text file. I also want to read the file later and assign the values to another mXn matrix. How?

EDIT: I want it to be as easy as possible to later load the content of the file to a variable in matlab (a matrix). I also might use the file in a C program where I load the numbers in the file to an mXn array.

Upvotes: 1

Views: 241

Answers (2)

Mark
Mark

Reputation: 1144

Would DLMREAD/DLMWRITE work for you?

Upvotes: 0

michid
michid

Reputation: 10814

See the functions save and load.

Upvotes: 1

Related Questions