Hello everyone, i want to read point from a txt file and hold them in two variables x,y...the file txt has the following pattern x1 y1 i.e
x2 y2

Antworten (1)

madhan ravi
madhan ravi am 15 Nov. 2018
Bearbeitet: madhan ravi am 15 Nov. 2018

0 Stimmen

T=readtable('sample.txt'); %see attached file
datas=table2array(T);
x=datas(:,1)
y=datas(:,2)

3 Kommentare

Kosmas Kyriakopoulos
Kosmas Kyriakopoulos am 15 Nov. 2018
i want in two variables to save them ..
or you want this:
T=readtable('sample.txt')
X=T.Var1
Y=T.Var2
see attached file in this comment
jonas
jonas am 15 Nov. 2018
"i want in two variables to save them .. "
And I wanted you to upload the file

Melden Sie sich an, um zu kommentieren.

Kategorien

Tags

Gefragt:

am 15 Nov. 2018

Kommentiert:

am 15 Nov. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by