필터 지우기
필터 지우기

how to open a .tra and .pri file

조회 수: 20 (최근 30일)
Hamdi Bacha Amir
Hamdi Bacha Amir 2022년 6월 19일
댓글: Walter Roberson 2022년 6월 20일
I have .tra and .pri format files and I am looking for how to open these files or converter
  댓글 수: 3
Hamdi Bacha Amir
Hamdi Bacha Amir 2022년 6월 20일
it is a vallen system file of the acoustic emission
Walter Roberson
Walter Roberson 2022년 6월 20일
Is the device AMSY5 or is it AMSY6? The storage for the 6 appears to be sqllite compatible databases for which there are utilities available (in Python at least). I am having difficulty finding documentation on the file format of the files that you mentioned.

댓글을 달려면 로그인하십시오.

답변 (1개)

Nitanshu
Nitanshu 2022년 6월 19일
Hi Hamdi,
To open file in Matlab you can use the following code:
filepath = 'file_path';
[fileID, message] = fopen(filepath, 'r');
if fileID < 0
error('Failed to open file at path %s due to this error %s"', filepath, message);
end
Hope it helps
Thanks
  댓글 수: 1
Hamdi Bacha Amir
Hamdi Bacha Amir 2022년 6월 19일
thanks for help but this is not a solution for these format it is for .txt format

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by