Minimum and Maximum after maximum value

1 visualización (últimos 30 días)
jason
jason el 11 de Sept. de 2022
Editada: Torsten el 11 de Sept. de 2022
I need to find the minimum value after the max has occurred. For example, in [1 5 7 3 2 6], the max is 7, and I would want to find 2.

Respuesta aceptada

Torsten
Torsten el 11 de Sept. de 2022
Editada: Torsten el 11 de Sept. de 2022
The first element of v which is a maximum is taken.
If the last element of v is the maximum, m will be empty.
v = [1 5 7 3 2 6];
[~,idx] = max(v);
m = min(v(idx(1)+1:end))

Más respuestas (0)

Categorías

Más información sobre Mathematics and Optimization en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by