max of matrix or min matrix or average matrix
153 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
abdullah qasim
am 4 Feb. 2021
Kommentiert: abdullah qasim
am 4 Feb. 2021
Dear
I have a matrix to say it's R, which is 101 x 101
R (101x101)
I want to find the highest point 'max (R)'
When I want to run code
Re=max (R);
The result is a matrix "1 x 101", but I want one point, the highest point.
Also, I want a minimum a point and Average
And if there is any help with codes and commands ,
Thanks
0 Kommentare
Akzeptierte Antwort
Peter Bonavita
am 4 Feb. 2021
Bearbeitet: Peter Bonavita
am 4 Feb. 2021
Michael V's answer here also applies to your question:
This syntax finds the max of the entire matrix:
M = max(R, [], 'all');
Similar for minimum:
M = min(R,[],'all')
and mean:
M = mean(R,'all')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Computer Vision with Simulink finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!