How do I get the value at a particular index?

245 ビュー (過去 30 日間)
Zuha Yousuf
Zuha Yousuf 2019 年 10 月 24 日
コメント済み: Walter Roberson 2020 年 3 月 1 日
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 件のコメント
Walter Roberson
Walter Roberson 2020 年 3 月 1 日
Yes the techniques there are good, except I would not use the diag() one

サインインしてコメントする。

回答 (1 件)

Siriniharika Katukam
Siriniharika Katukam 2019 年 10 月 29 日
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)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by