Display the the minimum value

3 visualizaciones (últimos 30 días)
UTS
UTS el 8 de Mzo. de 2015
Comentada: Star Strider el 8 de Mzo. de 2015
A B
0.025 520
0.027 531
0.029 560
0.031 508
0.033 600
0.035 572
0.037 523
0.039 512
0.041 582
0.043 525
Hi, I am writing a program to determine the value of element A which is corresponding to the minimum value of element B. The answer must be as:
M =
0.031
508
However, the written code
M = min(E,[],2)
gives this answer
M =
0.025
508
Could you please let me know the right code which is able to display the value of element A which is corresponding to smallest value of element B.
Thank you very much

Respuesta aceptada

Star Strider
Star Strider el 8 de Mzo. de 2015
This works:
E = [ 0.025 520
0.027 531
0.029 560
0.031 508
0.033 600
0.035 572
0.037 523
0.039 512
0.041 582
0.043 525];
[MinB,Idx] = min(E(:,2));
Result = E(Idx,:)
produces:
Result =
31.0000e-003 508.0000e+000
as desired.
  2 comentarios
UTS
UTS el 8 de Mzo. de 2015
Thank you very much,
Star Strider
Star Strider el 8 de Mzo. de 2015
My pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by