Basic question regarding adding A to all numbers greater than B
조회 수: 7 (최근 30일)
이전 댓글 표시
For example, if I have an array like x = (1:10); How would I add 2 to each number in that array that is greater than 5?
댓글 수: 0
답변 (1개)
James Blackwell
2018년 2월 1일
You could have an if function and go through the array element by element. If the number is greater than 5 you could add 2 to it :)
It sounds a bit like a homework question, so I don't think I'm supposed to give the code.
댓글 수: 3
Steven Lord
2018년 2월 1일
Since your homework assignment prohibits using if, its purpose is likely to familiarize you with logical indexing.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!