矩阵乘法和矩阵的逆

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

猜你喜欢

转载自blog.csdn.net/yzcwansui/article/details/84102635