how to open a .tra and .pri file
    14 views (last 30 days)
  
       Show older comments
    
I have .tra and .pri format files and I am looking for how to open these files or converter
3 Comments
  Walter Roberson
      
      
 on 20 Jun 2022
				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.
Answers (1)
  Nitanshu
      
 on 19 Jun 2022
        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
See Also
Categories
				Find more on Develop Apps Using App Designer in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
