Difference between values and indices?
3 ビュー (過去 30 日間)
古いコメントを表示
Can someone give an explanation of the difference between the values of elements in a matrix vs. the indices of elements in a matrix?
Thanks.
0 件のコメント
採用された回答
Mischa Kim
2017 年 10 月 5 日
編集済み: Mischa Kim
2017 年 10 月 5 日
E.g.
A = [1 2; 3 4]
Values of/in A are 1,2,3,4. To access the 2 you would use
val = A(1,2)
(1,2) are the indices of the element of A whose value is 2.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!