필터 지우기
필터 지우기

Use the values in one matrix as index values to another matrix and replace with a value

조회 수: 2 (최근 30일)
Hello,
I have a matrix A of size 24 x 365 with certain values and I have a matrix B of zeros of the same size as A. I would like to replace the zeros in B with the value 5 in the position mentioned in A.
For example
I would like B to look like
I would appreciate any help thank you!

답변 (1개)

David Hill
David Hill 2022년 3월 16일
The sizes of A and B in your example are not the same.
m=max(A,[],'all');
B=zeros(m,size(A,2));
a=A+(0:m:m*(size(A,2)-1));
B(a)=5;
  댓글 수: 1
Ritika Srinivasan
Ritika Srinivasan 2022년 3월 16일
Thankyou for the answer that is just a snippet as i didnt want to show two 24x365 sized matrices. would the logic remain the same?

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

카테고리

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