Borrar filtros
Borrar filtros

I want to find in which row the minimum element is

15 visualizaciones (últimos 30 días)
Giannakis Stoukas
Giannakis Stoukas el 11 de Abr. de 2015
Respondida: Star Strider el 11 de Abr. de 2015
I have a vector and i wand to find in which row i have the lowest number

Respuesta aceptada

Star Strider
Star Strider el 11 de Abr. de 2015
Use the min function with two outputs:
[Vmin,Idxmin] = max(V);
If ‘V’ is your column vector, ‘Vmin’ will be the minimum value, and ‘Idxmin’ will be the index of the first occurrence of the minimum. If you have more than one value of the minimum, use the find function:
Idxmin = find(V == min(V));
It will return the indexes (row numbers) of all values of the minimum.

Más respuestas (0)

Categorías

Más información sobre Logical 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