What wrong with the indexing code?
이전 댓글 표시
If I want to fill in a matrix, of which I have its indices without a for loop, how could I do it? Suppose that the (row(i),col(i)) elements to be filled are given.
value = 189;
row = [ 1 3 6 7 8 ];
col = [ 1 1 4 4 5];
B(row,col) = value
채택된 답변
추가 답변 (1개)
Birdman
2018년 2월 8일
B(sub2ind([max(row) max(col)],row,col)) = value
댓글 수: 8
GEORGIOS BEKAS
2018년 2월 8일
sub2ind function converts the equivalent indexes of given rows and columns and it should also know the size of your matrix. The inputs are accordingly given. For instance, the linear index representation for a matrix having 2 rows and 5 columns, the index of the element at
row=2;
col=3;
is
6
GEORGIOS BEKAS
2018년 2월 8일
Birdman
2018년 2월 8일
I did not use for loop here,as you can see.
GEORGIOS BEKAS
2018년 2월 8일
Walter Roberson
2018년 2월 8일
The reshape() is not needed.
Birdman
2018년 2월 8일
Doesn't my answer also work Walter?
GEORGIOS BEKAS
2018년 2월 8일
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!