How to get the min and max values of a randomized matrix?
11 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Chunru
2022 年 9 月 19 日
A = randi([0 128], [20, 20])
maxA = max(A(:))
minA = min(A(:))
2 件のコメント
Chunru
2022 年 9 月 20 日
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.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!