excel data into a single columns using loop
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
LIM JIAXIN
el 30 de Sept. de 2018
Comentada: ANKUR KUMAR
el 1 de Oct. de 2018
Does anyone know how to make this data into a single columns with spacing interval using for loop? from top data to bottom data

.

2 comentarios
Respuesta aceptada
ANKUR KUMAR
el 30 de Sept. de 2018
What do you mean by equal spacing between each column. You cannot keep blank any element in matrix. You can do in cell. Here is an example.
A=xlsread('example.xlsx')
reshape(A,[],1) %if you want without keeping blank between each column
B=arrayfun(@(x) num2str(x) , A,'uni',0);
C=[B';{'','','';'','',''}];
reshape(C,[],1)
12 comentarios
ANKUR KUMAR
el 1 de Oct. de 2018
A=xlsread('example.xlsx')
A(2,:)=[];
reshape(A,[],1) %if you want without keeping blank between each column
B=arrayfun(@(x) num2str(x) , A,'uni',0)
C=[B;{'','','';'','',''}];
reshape(C,[],1)
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import from MATLAB 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!