Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Stacking many vector data into one resultant vector data but of the same length
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi is there anyone who could direct me on how i could stack my data without increasing the length of the output. i have tried to use the stack function but apparently, the length of the resultant is larger than the input. i have attached a file of 10 columns and each column has a length of 15493 records. i would wish to stack all the 10 into 1 with a length of 15493. Is there something that can be done?
thanks
1 comentario
Respuestas (1)
madhan ravi
el 11 de Jul. de 2020
Editada: madhan ravi
el 11 de Jul. de 2020
nrecords = 10;
Data = cell(nrecords, 1);
for k = 1:nrecords
Data{k} = dlmread(sprintf('data%d.txt',k));
end
celldisp(Data)
DATA = cat(3, Data{:}) % as 3D
1 comentario
La pregunta está cerrada.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!