How to find the index of the first minimum element

4 visualizaciones (últimos 30 días)
Chamira Wickramasinghe
Chamira Wickramasinghe el 19 de Mzo. de 2015
Respondida: Sean de Wolski el 19 de Mzo. de 2015
Hello,
I have a 1X6 matrix.
y = [682.8333 399.8160 34.2270 46.1800 107.7035 ];
I wanna find the first minimum element (not the minimum value the first minimum value which means the first value that has two greater values on left and right sides) (the first negative peak)
In here it must be 34.2270 ( I know it can be found by "out = y(find(diff(y)>0,1,'first'));" )
And I wanna know what the index of that element.
In here it must be 3.
Thank you.

Respuestas (1)

Sean de Wolski
Sean de Wolski el 19 de Mzo. de 2015
[~,idx] = min(y)

Categorías

Más información sobre Operators and Elementary Operations 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!

Translated by