How to get the min and max values of a randomized matrix?
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anthony Koning
el 19 de Sept. de 2022
Comentada: Chunru
el 20 de Sept. de 2022
Hellow. I'm currently making a 20x20 matrix where each value of the matrix is a random number between 0-128, as well as fincing the largest and smallest values generated by said matrix. However, whenever I use the M=min/max(A) functions, my min/max values keep remaining the same (97 for min and 116 for max) despite the matrix generating numbers greater and smaller than those two values. Could someone explain why this is happening?
0 comentarios
Respuesta aceptada
Chunru
el 19 de Sept. de 2022
A = randi([0 128], [20, 20])
maxA = max(A(:))
minA = min(A(:))
2 comentarios
Chunru
el 20 de Sept. de 2022
I am not sure what you have exactly done since you did not post your code.
Here is my guess: max(A(:)) or max(A, [], 'all') find max of all elements of A while max(A) find the max along column of A.
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!