What does a(a<0) = 0 mean in matlab?
조회 수: 14(최근 30일)
표시 이전 댓글
I am new to matlab.
What does a(a<0) = 0 mean?
is it valid if a is an array as well?
댓글 수: 0
채택된 답변
Cris LaPierre
2022년 6월 23일
Yes, it works on arrays. It is using logical indexing to assign values to a. You can learn more about logical indexing in Ch 11 of MATLAB Onramp.
Basically, set any value in a that is less than zero to zero. Here's a simple example.
a = rand(3)
a<0.5
a(a<0.5)=0
댓글 수: 0
추가 답변(1개)
Adam Danz
2022년 6월 23일
> What does a(a<0) = 0 mean?
a can be a scalar or an array.
This replaces all values in a that are less than 0 with 0.
Example
a = [-6: 2 : 6]
a(a<0) = 0
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!