Multiples of 5
23 views (last 30 days)
Show older comments
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?
0 Comments
Accepted Answer
Walter Roberson
on 26 May 2012
for K = numel(YourArray): -1 : 1
if (K / 5) == fix(K / 5)
YourArray(K) = [];
end
end
There are definitely easier ways, but your question sounds like an assignment.
1 Comment
More Answers (1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!