I wanted to combine these cells into a table.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
CalebJones
el 25 de Oct. de 2019
Comentada: CalebJones
el 25 de Oct. de 2019
I wanted to perform horzcat to this.
0 comentarios
Respuesta aceptada
galaxy
el 25 de Oct. de 2019
Do it as following:
load('matlab.mat');
out = cell2mat(new_raw(1,1));
for i=2:length(new_raw)
out = horzcat(out, cell2mat(new_raw(1,i)));
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Elementary Math 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!