フィルターのクリア

How to grab first number from each line of a .txt file and store it in a vector?

4 ビュー (過去 30 日間)
I want to grab first number from each line and store it in a vector. I am trying in following way. But, the written code is picking all numbers from the file. I have attached here the input.txt file. Can anybody please help me regarding this? Thank you.
My written code:
fid = fopen('input.txt');
matrix = fscanf(fid, '%d', [1,inf]);
disp(matrix)
Matlab Output:
1 3 4 8 2 -1 0 8 3 4 5 6 7 8 9 -2
I wanted to grab only(the first number from each line):
1 3 2 3 4 5 6 7 8

採用された回答

Walter Roberson
Walter Roberson 2020 年 2 月 9 日
fid = fopen('input.txt');
matrix = cell2mat( textscan(fid, '%f%*[^\n]') ); %second field skips to end of line
fclose(fid);
  4 件のコメント
Shuvashish Roy
Shuvashish Roy 2020 年 2 月 10 日
Thanks a lot for your time and patience. You are really very kind and awesome!
Preyanka Dey
Preyanka Dey 2020 年 2 月 10 日
Thank you so much. Finally, I got it. You are really very kind.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by