how to change matrix element from zero to 1

조회 수: 2 (최근 30일)
amina shafanejad
amina shafanejad 2015년 5월 17일
댓글: Stephen23 2015년 5월 17일
hello i have one matrix 4 by 4 which only it has few zero element how can i say it check the element if less than one then change it to one ?

답변 (1개)

the cyclist
the cyclist 2015년 5월 17일
If A is your matrix,
A(A<1) = 1
  댓글 수: 3
Walter Roberson
Walter Roberson 2015년 5월 17일
for K = 1
A = max(A,1);
end
Stephen23
Stephen23 2015년 5월 17일
Why use a loop for this? It is faster and neater using the cyclist's vectorized code.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by