Borrar filtros
Borrar filtros

reading data from columns of multiple text files

14 visualizaciones (últimos 30 días)
Sumera Yamin
Sumera Yamin el 7 de En. de 2019
Comentada: Sumera Yamin el 8 de En. de 2019
Hi all, my question is a bit basic. I want want to read data of columns and individually store values of each in the form of an array.
Using Load, can successfully read my file but cannot seperate the columns data. Lets say i want to store columns values as x, y and z array, and for second file again as x1, y1, z1.
load ScanB_mp_beamshifted_allsame_oppsign.Scan.001

Respuesta aceptada

Ganesan S
Ganesan S el 7 de En. de 2019
Dear Sir,
can you try this?
d=load('data1.txt');
x=d(:,1);
y=d(:,2);
z=d(:,3);
Is this the one are you expecting?

Más respuestas (0)

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by