Effacer les filtres
Effacer les filtres

matlab code to find the position of values in a vector within the specified range that meets a certain condition?

3 vues (au cours des 30 derniers jours)
how to find the index positions of values in a vector within the specified range that meets a certain condition?
ex: d=[1 2 14 20 10 15 2 4 9 7 5]
my range(index positions) is 3 to 6
condition is(value < 15)
the output should be [3 5]

Réponse acceptée

Preethi
Preethi le 28 Nov 2016
hi,
d=[1 2 14 20 10 15 2 4 9 7 5];
x =find(d<15)
y =x(x<=6 & x>=3)

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by