Why can't I open this .TRA file?

2 vues (au cours des 30 derniers jours)
Peter Bu
Peter Bu le 24 Sep 2018
Commenté : Peter Bu le 24 Sep 2018
Hello everyone,
I do not know why I cannot open this file in MatLab. Can anyone help me?
fileID = fopen('Test_Zugversuche_PDMS_Probe 10.8_charge3.TRA');
file_data = textscan(fileID,'%f64 %f64 %f64 %f64','Delimiter','; ','HeaderLines',8);
Error using textscan
Invalid file identifier. Use fopen to generate a valid file identifier.
Error in Young_Mod (line 56)
file_data = textscan(fileID,'%f64 %f64 %f64 %f64','Delimiter','; ','HeaderLines',8);

Réponse acceptée

Walter Roberson
Walter Roberson le 24 Sep 2018
filename = 'Test_Zugversuche_PDMS_Probe 10.8_charge3.TRA';
[fileID, message] = fopen(filename, 'r');
if fileID < 0
error('Failed to open file "%s" because "%s"', filename, message);
end
My guess would be that the file is not in your current directory or anywhere along the MATLAB path.
  1 commentaire
Peter Bu
Peter Bu le 24 Sep 2018
Thanks! That was the problem.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Low-Level File I/O dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by