replicating/copy part of Cell Array
62 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Scragmore
am 29 Nov. 2011
Bearbeitet: Astik Sachan
am 10 Mai 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 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Astik Sachan
am 10 Mai 2017
Bearbeitet: Astik Sachan
am 10 Mai 2017
CA{100,5}; %you have
tempCA = {CA{1:50,4:5}};
NewCA = reshape(tempCA,[50,2]);
Try this!
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!