Transposing cells
Mostrar comentarios más antiguos
hi, how can I transpose each cell in a cell array?
Respuesta aceptada
Más respuestas (1)
Jan
el 19 de En. de 2012
Or by a loop:
a{1} = [1 2; 3 4];
a{2} = [5 6; 7 8];
for i = 1:numel(a)
a{i} = transpose(a{i});
end
1 comentario
Syed Abbas
el 19 de En. de 2012
Categorías
Más información sobre Matrices and Arrays en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!