Find indices in 2D Matrix

조회 수: 45 (최근 30일)
Bianka Markovic
Bianka Markovic 2021년 7월 29일
편집: the cyclist 2021년 7월 30일
Hello everyone,
I'm trying to solve he problem with my indices. I have a 2D matrix A with ones and zeros. Now i want to define my other matrix B on those coordinates where A=1. But in the end i still want to have an 2D Matrix, not a vector with indeces.
Does anyone know how this could be solved.
Thank you!
A = rand(50,20)>.3;
B=rand(50,20);
newmatrix=B(A);

채택된 답변

the cyclist
the cyclist 2021년 7월 29일
Is this what you mean? (I made the matrices smaller, just to show the result.)
A = rand(5,2)>.3;
B = rand(5,2);
newmatrix = zeros(size(A));
newmatrix(A) = B(A)
newmatrix = 5×2
0.5006 0 0.1912 0.2603 0.9736 0.3731 0 0.7064 0 0
  댓글 수: 5
Bianka Markovic
Bianka Markovic 2021년 7월 30일
Hm, it says that the matrix dimension must agree. But I made it with D = bsxfun(@times,C,B); :) Thanks again!
the cyclist
the cyclist 2021년 7월 30일
편집: the cyclist 2021년 7월 30일
Ah, sorry. You must have an older version of MATLAB. Newer versions (since R2016b) have implicit expansion. Glad you found bsxfun.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by