How to replace matrix elements by using statements?

I have a matrix which has 9x9 size.(mhw1)
so i want to change the elements which higher than 3 to 3 and lower than 1 to 1.
what am i doing wrong?
c=zeros(size(mhw1));
for i = 1:size(mhw1)
if mhw1(i)>.3
c(i)=3;
elseif mhw1(i)<.1
c(i)=1;
end
end

 채택된 답변

KSSV
KSSV 2022년 10월 3일
편집: KSSV 2022년 10월 3일
It is very simple and straight forward. Consider this example.
A = rand(3) ;
A(A<0.3) = 0 ;
A(A>0.8) = 1 ;

댓글 수: 1

Never thought it that way, that was on me.(forgot to think simple) Thanks for the answer.

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

추가 답변 (1개)

Ergin Sezgin
Ergin Sezgin 2022년 10월 3일
Hello Hasancan,
You should use both rows and columns in two for loops to check and adjust each element in a 2D matrix.
for i = 1:size(mhw1,1)
for j = 1:size(mhw1,2)
if mhw1(i,j) > 3
mhw1(i,j) = 3;
elseif mhw1(i,j) < 1
mhw1(i,j) = 1;
end
end
end
You can also perform it in a quicker and more efficient way:
mhw1(mhw1>3) = 3
mhw1(mhw1<1) = 1
I hope it helps.

댓글 수: 1

Thanks for the answer, always forgetting to think simple :)

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

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

태그

질문:

2022년 10월 3일

댓글:

2022년 10월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by