Michal Marcin
Michal Marcin

Reputation: 33

Load .tdms file in Matlab

Helo,

I have *.tdms file exported from LabView. How can it be loaded in Matlab 2015 or v 2016 64 bit for better data processing?

Thank you very much for any help.

Upvotes: 1

Views: 4564

Answers (1)

acampb311
acampb311

Reputation: 343

You simply need to grab a reader from the Matlab File Exchange, I use the following one in my work: https://www.mathworks.com/matlabcentral/fileexchange/30023-tdms-reader

You can use it by running something like:

MyData = TDMS_readTDMSFile('MyGenericFileName.tdms');

Upvotes: 2

Related Questions