如果 A 和 B 都是相同大小的行向量,操作 A'\B' 会做什么?
What does the operation A'\B' do if A and B are both row vectors of the same size?
[1 2 1]'\[1 2 3]'
这是一个数值例子。此示例给出的答案为 1.333
x = A\B
If A
is a rectangular m
-by-n
matrix with m ~= n
, and B
is a matrix with m
rows, then A\B
returns a least-squares solution to the system of equations A*x= B
.
此外 '
计算矩阵的 conjugate transposed。在你的情况下,你有两个实矩阵,所以你每次都得到转置。
[1 2 1]'\[1 2 3]'
这是一个数值例子。此示例给出的答案为 1.333
x = A\B
If
A
is a rectangularm
-by-n
matrix withm ~= n
, andB
is a matrix withm
rows, thenA\B
returns a least-squares solution to the system of equationsA*x= B
.
此外 '
计算矩阵的 conjugate transposed。在你的情况下,你有两个实矩阵,所以你每次都得到转置。