how to extract certain data points from a long array based on certain criteria

5 vues (au cours des 30 derniers jours)
veh_velo = [0,0,1,3,7,9,11,15,18,20,19,19...]; accel_pedal = [0,0,2,4,6,9,10,11,12,13,13..]; I want to extract all maximum accel_pedal values whenever veh_velo goes from 0 to 10

Réponse acceptée

Paolo
Paolo le 16 Août 2018
Modifié(e) : Paolo le 16 Août 2018
veh_velo = [0,0,1,3,7,9,11,15,18,20,19,19];
accel_pedal = [0,0,2,4,6,9,10,11,12,13,13];
accel_pedal(veh_velo >= 0 & veh_velo<=10)

Plus de réponses (0)

Catégories

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

Produits


Version

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by