Rearrange data

Dear all, I have data like below in my file below..i need to rearrange to single column but i need skip the first row?? If i suing load function, cannot because the matrix is not same..What i need, the result is like below.. So,how? I try reshape but failed to skip first row..
76.3 89.0 93.1
76.3 89.0 93.1 72.4 81.7
81.9 93.4 90.5 81.8 76.7
80.3 97.8 100.0 89.2 79.6
89.0 93.1 72.4
Result: 76.3 89.0 93.1 72.4 81.7 81.9 93.4 90.5 81.8 76.7 80.3 97.8 100.0 89.2 79.6 89.0 93.1 72.4

Respuestas (1)

Sean de Wolski
Sean de Wolski el 29 de Dic. de 2011

0 votos

something along the lines of:
reshape(A(2:end,:).',1,[])

4 comentarios

joo tan
joo tan el 29 de Dic. de 2011
the data in a text file..let say sealevel.txt
joo tan
joo tan el 29 de Dic. de 2011
so, i need to import the data..usually, i like use load ..
joo tan
joo tan el 29 de Dic. de 2011
i need to reshape to sigle column
Sean de Wolski
Sean de Wolski el 29 de Dic. de 2011
importdata or textscan?

Iniciar sesión para comentar.

Categorías

Más información sobre Data Type Conversion en Centro de ayuda y File Exchange.

Preguntada:

el 29 de Dic. de 2011

Community Treasure Hunt

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

Start Hunting!

Translated by