Karl TinKode
Karl TinKode

Reputation: 79

Convert .mat file to any other format such as .txt or .plist

How to read data store in a .Mat file and convert it to any other format such as .txt or .plist with a C language project?

If there is already an opensource project that does it, please tell me.

Thanks in advice.

Upvotes: 2

Views: 7713

Answers (1)

mnagel
mnagel

Reputation: 6854

it is doable, see the spec here: http://www.mathworks.de/de/help/matlab/matlab_external/custom-applications-to-read-and-write-mat-files.html?s_tid=doc_12b

in python it is all neatly wrapped up in scipy, see Read .mat files in Python

Upvotes: 3

Related Questions