how to read read a specific rows in .txt and put it in class?

1 回表示 (過去 30 日間)
EDWARD IJAU PELIAS POG
EDWARD IJAU PELIAS POG 2019 年 3 月 31 日
Hi. i had 10X10000 matrix in my .txt file. how to read 2 specific rows and put it in one class? below is my coding.
load ('.txt'); %open the .txt file
% Class 1
x1 = [row1];
y1 = [row6];
class1 = [x1 y1];
% Class 2
x2 = [row2];
y2 = [row7];
class2 = [x2 y2];
since my row have 10000 of numbers, its hard to key in the number one by one. Is there any method to scan the row and put it automatically inside the x1,y1,x2,y2?Thanks..
  5 件のコメント
Walter Roberson
Walter Roberson 2019 年 3 月 31 日
Or
class1 = data([1 6],:);
class2 = data([2 7],:);
EDWARD IJAU PELIAS POG
EDWARD IJAU PELIAS POG 2019 年 4 月 1 日
got it..thanks sir! Have a nice day..

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

採用された回答

per isakson
per isakson 2019 年 3 月 31 日
The problem is caused by the first character of line 11. It's char(26)
The function readtable() reads the file
Capture.PNG
  1 件のコメント
EDWARD IJAU PELIAS POG
EDWARD IJAU PELIAS POG 2019 年 4 月 1 日
this is so helpful..thanks for the help sir! have a good day..

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by