extracting rows with the highest value

4 visualizaciones (últimos 30 días)
Nathan
Nathan el 11 de Sept. de 2022
Respondida: Image Analyst el 11 de Sept. de 2022
I want to extract a row that has the highest value in one of the columns for example:
1 3
4 6
2 5
8 1
I would want to extract the row of 8 1

Respuesta aceptada

Torsten
Torsten el 11 de Sept. de 2022
A = [1 3
4 6
2 5
8 1];
[~,imax] = max(A(:));
[irow,~] = ind2sub(size(A),imax(1))
irow = 4
A(irow,:)
ans = 1×2
8 1

Más respuestas (1)

Image Analyst
Image Analyst el 11 de Sept. de 2022

Categorías

Más información sobre Get Started with MATLAB 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