Borrar filtros
Borrar filtros

I wanted to combine these cells into a table.

1 visualización (últimos 30 días)
CalebJones
CalebJones el 25 de Oct. de 2019
Comentada: CalebJones el 25 de Oct. de 2019
I wanted to perform horzcat to this.

Respuesta aceptada

galaxy
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)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by