Answers for "find max value of array matlab"

2

how to find the max in a setof data in matlab

M = max(A)
Posted by: Guest on August-18-2021
1

find location of max value in array matlab

maximum = max(max(A));
[x,y]=find(A==maximum)
Posted by: Guest on June-11-2020

Code answers related to "find max value of array matlab"

Browse Popular Code Answers by Language