how to extract TDMS file in matlab ?

조회 수: 2 (최근 30일)
pavan kumar
pavan kumar 2019년 12월 17일
답변: AR 2025년 6월 18일
i have TDMS file, how to open it in matlab

답변 (1개)

AR
AR 2025년 6월 18일
As of my knowledge, MATLAB R2022a and later versions include a function “tdmsread” that retrieves data from the specified TDMS file and results in a cell array of tables. Each of these tables corresponds to a channel group.
The syntax for the same is as follows:
data = tdmsread(tdmsfile)
Name-value pairs can be used to filter the data being read and to specify the output format.
data = tdmsread(tdmsfile,Name=Value)
For more information, refer to the documentation below:

카테고리

Help CenterFile Exchange에서 TDMS Format Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by