Find Location Of Max Value In Array Matlab

[Solved] Find Location Of Max Value In Array Matlab | Matlab - Code Explorer | yomemimo.com
Question : find location of max value in array matlab

Answered by : breakable-booby-19mef31s9qhm

maximum = max(max(A));
[x,y]=find(A==maximum)

Source : | Last Update : Thu, 18 Jun 20

Question : find max of two arrays matlab

Answered by : hamid-basiri

maximum_array = max(x, y);

Source : https://stackoverflow.com/questions/28247714/how-to-find-the-maximum-of-multiple-arrays-in-matlab | Last Update : Wed, 17 Aug 22

Answers related to find location of max value in array matlab

Code Explorer Popular Question For Matlab