矩陣乘法和矩陣的逆

The result of multiplying a matrix by some vector:

is a combination of the columns of the matrix
example:
1
在這裏插入圖片描述
for each column like this:
在這裏插入圖片描述
右乘列向量代表各列加權求和,最終結果是一列
在這裏插入圖片描述
for each row like this:
在這裏插入圖片描述
左乘一個行向量代表各行加權求和,其最終結果是一個行向量

兩矩陣相乘:
AB = sum(cols of A) *(rows of B)
判斷矩陣A是否可逆:
if AX = 0 and to any X != 0:
A inverse is existed

求解矩陣的逆

Giauss - Jordan
在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章