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

3 次查看(过去 30 天)
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

采纳的回答

Paolo
Paolo 2018-8-16
编辑:Paolo 2018-8-16
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)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by