Borrar filtros
Borrar filtros

min value of each row with corresponding column

1 visualización (últimos 30 días)
M
M el 1 de Nov. de 2023
Respondida: Dyuman Joshi el 1 de Nov. de 2023
How to do the following?
If there are three columns and I want to get the min value of each row and I want to know from which column was this value

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 1 de Nov. de 2023
y = magic(3)
y = 3×3
8 1 6 3 5 7 4 9 2
%Utilize the functionality of min()
[m,idx] = min(y, [], 2)
m = 3×1
1 3 2
idx = 3×1
2 1 3

Más respuestas (0)

Categorías

Más información sobre Language Fundamentals 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