determine minimum from the first column values of matrix and removing the rest of the rows

1 visualización (últimos 30 días)
Hi everyone, I would like to select only the min of matrix, E from values of the first column of the matrix
E = [0.1 1 19 18 4 3 0 0 0 0 0 0
0.8 1 19 2 3 0 0 0 0 0 0 0
0.2 1 2 3 0 0 0 0 0 0 0 0
];
Results should be:
G = [0.1 1 19 18 4 3 0 0 0 0 0 0
];

Respuesta aceptada

Bruno Luong
Bruno Luong el 14 de Sept. de 2019
[~,imin] = min(E(:,1));
G = E(imin,:)

Más respuestas (0)

Categorías

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