矩阵乘法和矩阵的逆

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
在这里插入图片描述

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