How to read Value from .txt

1 次查看(过去 30 天)
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 个评论
Walter Roberson
Walter Roberson 2020-6-15
编辑:Walter Roberson 2020-6-15
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 2020-6-15
could you please write the proper code because i am new for matlab .

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2020-6-15
filename = 'File.txt';
fid = fopen(filename, 'rt');
GAL = cell2mat(textscan(fid, '%*s%f%f%f', 1, 'headerlines', 2, 'collectoutput', true));
fclose(fid);

更多回答(0 个)

类别

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