selecting a specific range in a matrix and cell array
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
AA
am 23 Dez. 2014
Beantwortet: Image Analyst
am 23 Dez. 2014
I have a large cell array with many matrices. I want to select row 1 and column 16 which has a matrix table. in that matrix table i want to select row 861. How do I do that?
a{1,16:861}
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 23 Dez. 2014
% Extract the matrix inside that cell in row 1, column 16
% of the cell array into a regular numerical array.
cellContents = ca{1,16}; % This is a regular normal matrix now
% Now extract row 816 from that matrix:
row861 = cellContents(861, :); % Get all columns of row 861 into row vector.
0 Kommentare
Weitere Antworten (1)
Sean de Wolski
am 23 Dez. 2014
Just use two lines of code. There's no shame in doing this. And since MATLAB passes implicitly by reference anyway, it won't require a memory copy unless you change something.
2 Kommentare
Sean de Wolski
am 23 Dez. 2014
Start here:
You can index into the cell array to extract its contents with {} or to extract the cell as ().
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!