replicating/copy part of Cell Array
62 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Scragmore
el 29 de Nov. de 2011
Editada: Astik Sachan
el 10 de Mayo de 2017
I have Cell Array;
CA{100,5}
is there a function/syntax to copy a section of a cell array in a similar fashion to copying a matrix;
NewCA = CA{1:50, 4:5};
or do I have to cell copy using a loop.
Thanks,
AD
0 comentarios
Respuesta aceptada
Más respuestas (1)
Astik Sachan
el 10 de Mayo de 2017
Editada: Astik Sachan
el 10 de Mayo de 2017
CA{100,5}; %you have
tempCA = {CA{1:50,4:5}};
NewCA = reshape(tempCA,[50,2]);
Try this!
0 comentarios
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!