Updating values in array based on index vector

조회 수: 14 (최근 30일)
Felix
Felix 2020년 5월 28일
댓글: Felix 2020년 5월 28일
Hi,
I have a 2D array (with zeros), and I want to update some indexes with 1's. I have a vectors with those indexes (seperatly for X and Y).
I can do a loop for i :Array(x(i),y(i)=1. but I'm looking for something more efficient (Run time is low, but probably I can do without loops)
Doing something like Array( X; Y ) = 1; is not doing what i'm looking for.
Any suggestions?
Thanks in advance :)

채택된 답변

Mohammad Sami
Mohammad Sami 2020년 5월 28일
One of the ways is to convert your subscript to linear index and then do the assignments.
ind = sub2ind(size(A),x,y);
A(ind) = 1;
  댓글 수: 2
Mohammad Sami
Mohammad Sami 2020년 5월 28일
A test case.
A = zeros(10,10);
x = 1:10;
y = 1:10;
ind = sub2ind(size(A),x,y);
A(ind) = 1; % set diagnol to 1
Felix
Felix 2020년 5월 28일
sub2ind did the trick, Thanks!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by