Unrecognized function or variable 'mexTDMS'
조회 수: 50 (최근 30일)
이전 댓글 표시
When I am trying to import my TDMS file I am receiving the error "Unrecognized function or variable 'mexTDMS'". I have downloaded the communications toolbox so I should be able to use the function shown below. The file ZnO.tdms is in the same pathway as MatLab. I am working on a Mac so I am not sure if that is part of the issue? Does anyone have any helpful tips?
>> data = tdmsread("ZnO.tdms");
Unrecognized function or variable 'mexTDMS'.
댓글 수: 0
답변 (2개)
Walter Roberson
2023년 4월 27일
The toolbox you are using is not supported on Silicon Mac, at least not in the release you are using. (I do not know if it is supported in the Open Beta)
댓글 수: 0
LeoAiE
2023년 4월 26일
Hi,
It seems like you are using a custom TDMS reading function that requires 'mexTDMS' and it is not found in your MATLAB environment. The error message you are receiving indicates that the 'mexTDMS' function or variable is not recognized, which means it is not available in the current path.
If you have downloaded a custom TDMS reader, make sure that the folder containing 'mexTDMS' is added to your MATLAB path. You can add the folder to the path by using the addpath function:
addpath('path/to/mexTDMS/folder');
Alternatively, you can add the folder to the MATLAB path using the 'Set Path' dialog in MATLAB by going to the 'Home' tab, then 'Environment' section, and clicking on 'Set Path'. Add the folder containing 'mexTDMS' and save the path.
If you are still having issues or would like to try another method, you can use the "TDMS Reader for MATLAB" File Exchange contribution, which does not require the Communications Toolbox:
- Download the TDMS Reader for MATLAB from the File Exchange: https://www.mathworks.com/matlabcentral/fileexchange/44206-tdms-reader-for-matlab
- Extract the contents of the downloaded ZIP file to a folder.
- Add the folder containing the extracted files to your MATLAB path as described above.
- Use the TDMS_readTDMSFile function provided by the TDMS Reader to read your TDMS file:
TDMS_data = TDMS_readTDMSFile("ZnO.tdms");
Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Downloads에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!