TDMS file merge and reader

버전 1.2.0 (3.6 KB) 작성자: Pedro Correia
These functions allow to read and merge different .tdms files in a single structure as long as the files has the same sensors.
다운로드 수: 91
업데이트 날짜: 2022/12/2

라이선스 보기

These functions allow to merge different .tdms files in a single structure as long as the files as the same sensors. Files need to have the same number of sensors and same sensors name.
Ideal when the data is splitted in diferent smaller size files.
Easiest use:
directory=('tdms_files_path');
file_name=get_files_TDMS(directory);% function get all file names that are .tdms
TestData=GetTDMS(directory,file_name,0);
[x,y]=time_values_TDMS(TestData.Sensors.sensor_name);
figure()
plot(x,y)
Functions:
[files] = get_files_TDMS(directory) - this function gets all the tdms files inside a directory
[TestData] = GetTDMS( directory, file_name, Save_folder) - merge all files into a single structure
[x, y] = time_values_TDMS(TestData_sensor) - provides the time and sensor values for any specific sensor
Read_TDMS_example.m
Contains a example of a script that can be used to read the TDMS data.
This add-on included theTDMS reader add-on by Jim Hokanson.

인용 양식

Pedro Correia (2025). TDMS file merge and reader (https://www.mathworks.com/matlabcentral/fileexchange/120863-tdms-file-merge-and-reader), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2020b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
태그 태그 추가
도움

도움 받은 파일: TDMS Reader

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0

Missing function Getsignals

1.1.0

Added example for easiest use. Included required add-on.

1.0.0