> How to browse a matrix file and keep the content of it in a
> memory.
> if you have two matrixes
i did not understand your question very well, but ill try to give you
an answer. you can save your variables in a file with extension *.mat
say you have to variables a and b and you wish to save them in a file.
type
>> save test.mat
and it will save these variables in a file independently of their
contents. you cannot modify the contents of the file since mat is a
binary file.
you could also save your variables in ascii format and then you could
edit the file anywhere. was this helpful? plz let me know.