how read array from a text file??

Hello
I have a text file having data like:-
12 23 24
45 66 99
11 22 33
these are in array form and
i want to read these array values as we generally access array values like
for example- i get the first row in a variable say- A i.e
A = 12 23 24
and on accessing A(1) it will give ans-12
so i want read this way.
Any help will be appreciated.
Thanks
Ashish

回答 (2 件)

Andrei Bobrov
Andrei Bobrov 2012 年 5 月 17 日

0 投票

A = dlmread('nametextfile.txt')

2 件のコメント

Ashi
Ashi 2012 年 5 月 18 日
now i want to read my data column wise not row wise.
Walter Roberson
Walter Roberson 2012 年 5 月 18 日
A(:,1), A(:,2) and so on.
Or transpose the result you get from dlmread()

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

Ziraddin Gulumjanly
Ziraddin Gulumjanly 2022 年 5 月 19 日

0 投票

12 34 82
23 54 22
34 92 29
45 91 21
67 63 12
45 43 77
43 12 75

カテゴリ

ヘルプ センター および File ExchangeCell Arrays についてさらに検索

質問済み:

2012 年 5 月 17 日

回答済み:

2022 年 5 月 19 日

Community Treasure Hunt

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

Start Hunting!

Translated by