using maxk with named columns
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rick Huisman
el 9 de Oct. de 2020
Comentada: Ameer Hamza
el 9 de Oct. de 2020
I want to locate the maximum number in a matrix.
For instance
A = magic(5)
to show the highest value I use maxk(A,1)
when I assign variable names to the table, maxk doesnt work, probably because there are now also names in the table.
How do I get this to work?
0 comentarios
Respuesta aceptada
Ameer Hamza
el 9 de Oct. de 2020
Editada: Ameer Hamza
el 9 de Oct. de 2020
If all the columns in the table are numeric
max_val = max(T{:,:})
Note maxk(x,1) is same as max(k).
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Descriptive Statistics 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!