How to find minimum value ,correspondings to a column ,in an output ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ivan Mich
el 24 de Nov. de 2020
Comentada: Steven Lord
el 24 de Nov. de 2020
Hello,
I have a question about a code. My code creates an output .txt file with two columns, (let's say x the 1st column and y the 2nd column) and plot the x-y plot. I am using "min(y)" in order to find the minimum value of y column. I would like to prind on my plot the x value that correspont to the minimum value of y column.
Could you please help me?
0 comentarios
Respuesta aceptada
Steven Lord
el 24 de Nov. de 2020
The second output from the min function will help you retrieve the corresponding element of x.
2 comentarios
Steven Lord
el 24 de Nov. de 2020
x = randi(10, 1, 8)
y = x.^2
[value, loc] = min(y)
x(loc)
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations 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!