Effacer les filtres
Effacer les filtres

How to read Value from .txt

1 vue (au cours des 30 derniers jours)
Arun Kumar Singh
Arun Kumar Singh le 15 Juin 2020
Commenté : Arun Kumar Singh le 15 Juin 2020
Here i am attaching screenshot of my file which is in .txt format, i have to read the three values (Marked in the screenshot) from the file. Could you please help me in this ??
  6 commentaires
Walter Roberson
Walter Roberson le 15 Juin 2020
Modifié(e) : Walter Roberson le 15 Juin 2020
fopen(), textscan() with headerlines 2, format '%*s%f%f%f', 'collectoutput', true, and count 1 (the count goes immediately after the format and before any other options.) cell2mat() the result of textscan() to get the numeric data. fclose()
Arun Kumar Singh
Arun Kumar Singh le 15 Juin 2020
could you please write the proper code because i am new for matlab .

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 15 Juin 2020
filename = 'File.txt';
fid = fopen(filename, 'rt');
GAL = cell2mat(textscan(fid, '%*s%f%f%f', 1, 'headerlines', 2, 'collectoutput', true));
fclose(fid);
  1 commentaire
Arun Kumar Singh
Arun Kumar Singh le 15 Juin 2020
Thank you sir, it worked ...

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