找最大元素就是max(max(A)),,注意二維矩陣要寫兩個max 找對應(yīng)位置用find函數(shù) 舉個例子: >> A=[1 2 3 ;4 5 6] A = 1 2 3 4 5 6 >> max(max(A)) ans = 6 >> [x y]=find(A==max(max(A))) x = 2 y = 3 >> 找到最大元素是6,,對應(yīng)位置是x=2,y=3,就是第2行,,第3列
Tags:最大值矩陣函數(shù)
文章版權(quán)聲明:除非注明,,否則均為便查問答網(wǎng)原創(chuàng)文章,轉(zhuǎn)載或復(fù)制請以超鏈接形式并注明出處,。