How to convert (2x3)[each element in 2x3 contains 1x19 double]cell array ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Bajdar Nour
el 12 de Oct. de 2018
Abierta de nuevo: Walter Roberson
el 22 de Dic. de 2018
2x3 cell Capture.jpg I want to convert to something like shown in 2nd jpg
3 comentarios
Respuesta aceptada
Fangjun Jiang
el 12 de Oct. de 2018
my guess, A is the original data, B is the desired result
A=repmat({1:5},2,3);
B=cell2mat(reshape(transpose(A),[],1))
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays 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!