Filter löschen
Filter löschen

How do I get the value at a particular index?

112 Ansichten (letzte 30 Tage)
Zuha Yousuf
Zuha Yousuf am 24 Okt. 2019
Kommentiert: Walter Roberson am 1 Mär. 2020
So I have indices corresponding to values that I want. Is there a MATLAB function that would allow me to output the values when I input the indices of those values?
  5 Kommentare
Walter Roberson
Walter Roberson am 1 Mär. 2020
Yes the techniques there are good, except I would not use the diag() one

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Siriniharika Katukam
Siriniharika Katukam am 29 Okt. 2019
Hi
Consider A as the matrix, and x as indices, then
Values = A(x)
In case you need value of a 2-D matrix, define 'rowMatrix' which has the row indices and 'colMatrix' which has corresponding column indices, then
Values = A(rowMatrix, colMatrix)

Kategorien

Mehr zu Matrix Indexing 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!

Translated by