Filter löschen
Filter löschen

Extract data from matrices and arrays using vectors of coordinates

71 Ansichten (letzte 30 Tage)
I have a matrix and I want to use two vectors of row and column index coordinates in order to extract the elements from it. In particular, I can define a 3 x 3 matrix as
A = [1 2 3; 3 4 5; 8 9 10]
And I want to use two vectors to extract the elements (2,2), (3,1), (1,3). My intention is to do this using the vectors for each corrdinates. I have been trying to do it by writing
A([2 3 1], [2 1 3])
but of course this is not working. I believe that this is a basic sintax issue.
Thank you so much

Akzeptierte Antwort

the cyclist
the cyclist am 28 Sep. 2021
Bearbeitet: the cyclist am 28 Sep. 2021
Use the sub2ind function to convert the subscripts to a linear index into the matrix.
Using your example:
A = [1 2 3; 3 4 5; 8 9 10]
A = 3×3
1 2 3 3 4 5 8 9 10
linearIndex = sub2ind(size(A),[2 3 1], [2 1 3])
linearIndex = 1×3
5 3 7
A(linearIndex)
ans = 1×3
4 8 3

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by