v1(v1 < 4) = 0;
modify v1 so that any value less than 4 is replaced with the value 0. Please help me making code.
조회 수: 8 (최근 30일)
이전 댓글 표시
modify v1 so that any value less than 4 is replaced with the value 0. please help me writing code.
채택된 답변
Ganesh
2024년 6월 15일
v1 = randi([1 6],1,10) % Example data
% Replace any value less than 4 with 0
v1(v1 < 4) = 0
We use "vector indexing" to achieve this.
When you apply a "condition" on an array, the result will be a logical array where, the corresponding indices in the result will be a 1 or a 0. You can use the result array to apply it back on v1 and modify the values where the "logic" holds true. You can use this to compare an array to a value, or even two equal sized arrays and their corresponding index values! You can find more on this using the following link:
댓글 수: 2
Ganesh
2024년 6월 15일
Importantly, all of this would be covered in the free Self Paced Online Course, MATLAB Onramp. It takes only about two hours, a fair tradeoff to asking a question here and getting the answer an hour later.
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!