Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to find which element is the lowest first or second or third or ....

3 Ansichten (letzte 30 Tage)
Chamira Wickramasinghe
Chamira Wickramasinghe am 5 Mär. 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
There is a 1X1 matrix.
I wanna find which element is the MINIMUM not the minimum value but the number of the particular element.
If this is the matrix,
y = [682.8333 399.8160 34.2270 46.1800 107.7035 ];
I know the minimum value is 34.2270 to get that we can use
mini= min(y);
but what i want is how to get the number of the minimum element
in here it's the 3rd element.
Thank you.

Antworten (1)

Star Strider
Star Strider am 5 Mär. 2015
Use the min function with two outputs:
[mini,index] = min(y);
The second output, ‘index’ here, is the index of the first minimum value the function finds.
  2 Kommentare
Chamira Wickramasinghe
Chamira Wickramasinghe am 5 Mär. 2015
Woooow it worked just like that
Thank u for your concern and answer.
Star Strider
Star Strider am 5 Mär. 2015
My pleasure!
If it solved your problem, I would appreciate it if you would Accept it.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by