Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a ".mat" file that I want to open and see the contents of. Since I don't have MATLAB, I downloaded GNU's Octave. Since I'm working on Mac's TERMINAL, I'm not exactly sure how to open the ".mat" file so that I can see the contents. Can anyone help me with this? Thanks!

share|improve this question

2 Answers

up vote 4 down vote accepted

Not sure which version of .mat file you might have, or whether Octave keeps up with the latest Matlab formats.

Here's a link that might be a good start.

Bottom line is that you can say: load MyMatFile.mat right at the Octave prompt.

In case you wind up having to write code to read the .mat file ever: I've done this before and it was not difficult, but was time-consuming. Mat file format for 2012a

share|improve this answer

I assume you're wanting to open the file for editing? If that's the case then you'll probably have to use an external text editor; Octave, to my knowledge, does not have an editor included like MATLAB does.

I could be wrong though, you might want to check Octave's documentation.

share|improve this answer
He said .mat not .m – Chris A. Mar 28 '12 at 21:16
Gah, you're right. I'd forgotten the extension on regular MATLAB files (it's been a while). – paul Mar 29 '12 at 12:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.