Ältere Kommentare anzeigen
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?
Akzeptierte Antwort
Weitere Antworten (1)
Andrei Bobrov
am 26 Mai 2012
x - your array
out = x(rem(x,5) ~= 0)
2 Kommentare
Walter Roberson
am 26 Mai 2012
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
am 30 Mai 2012
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!