Effacer les filtres
Effacer les filtres

Finding the largest index in an array that is divisible by a certain number

7 vues (au cours des 30 derniers jours)
Hi,
Given an nx1 array, I'm trying to get matlab to determine the largest index value which is divisible by a number (say 3), and then have matlab truncate the array to that point.
Any suggestions?
Thanks, Charles

Réponse acceptée

Walter Roberson
Walter Roberson le 23 Mai 2013
divisor = 3;
new_array = old_array(1 : end - mod(end,divisor));

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by