How to filter a certain range of values in a column vector of thousand rows
27 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Gali Musa
el 24 de Mayo de 2018
Comentada: jhoan giraldo
el 26 de Abr. de 2022
I want to find a range of values in a column vector of a minimum value of 20% and a maximum value of 90%. The column has 2000 rows. suppose i want to filter values between a range of 70% to 80%. sample code for i = 1:length(PP) if (70% <= PP(i) <= 80%) filtered_PP(i) = PP(i) end end I later separate it and still i'm not getting the correct the answer
for i = 1:length(PP) if (70% <= PP(i) && 80% >= PP(i)) filtered_PP(i) = PP(i) end end
0 comentarios
Respuesta aceptada
TAB
el 25 de Mayo de 2018
PP = (0:100)';
filtered_PP_Idx = find((PP>=73 & PP<=80));
filtered_PP = PP(PP>=70 & PP<=80);
3 comentarios
Ian Larson
el 8 de Abr. de 2022
Say PP was on a time x axis. How would I find the corresponding X values?
jhoan giraldo
el 26 de Abr. de 2022
You already have the indexes in filtered_PP_Idx. If you have for example a 'time' vector:
time_indexed=time(filtered_PP_Idx);
Más respuestas (0)
Ver también
Categorías
Más información sobre Filter Design en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!