Multiples of 5
이전 댓글 표시
Hi, ive got an array of numbers and i want to delete the array values whose index is a multiple of 5. How can i do this?
채택된 답변
추가 답변 (1개)
Andrei Bobrov
2012년 5월 26일
x - your array
out = x(rem(x,5) ~= 0)
댓글 수: 2
Walter Roberson
2012년 5월 26일
It is the _index_ whose value is a multiple of 5 that is to be affected, not according to the value of the array.
It seems likely to me that this task is homework, so I have refrained from giving the very short and simple solution.
Edward
2012년 5월 30일
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!