资源简介

Labview生成的TDMS文件批量转MAT文件代码,包含convertData.m、simpleConvertTDMS.m、convertTDMS.m三个文件,读取同一个文件夹下所有tdms文件并转为同名的mat文件,亲测可用,另附读取转换后的mat文件数据的说明文档。

资源截图

代码片段和文件信息


%----------------------------------------------------------------
%Navish Wadhwa - v1.5
%This area contians are the parameter which may be changed every times
path=‘D:\matlab\matlab_workspace\tdms_20190221\test\‘;

%----------------------------------------------------------------
Files=dir(strcat(path‘*.tdms‘));
lengthFiles=length(Files);
for i=1:lengthFiles
   % fopen(strcat(‘E:\work\‘Files(i).name)‘rt‘);
    simpleConvertTDMS(strcat(pathFiles(i).name));
end

fprintf(‘Completed‘‘\n‘);
clear;


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      70483  2014-11-06 14:23  convertTDMS.m

     文件       5368  2019-02-21 19:57  simpleConvertTDMS.m

     文件        521  2019-02-21 19:49  convertData.m

     文件        110  2019-02-23 16:03  读取tdms_mat数据.txt

----------- ---------  ---------- -----  ----

                76482                    4


评论

共有 条评论