我想在Julia 1.0
为此,我复制了wikipedia
中作为示例给出的矩阵julia> B = [-3 2 -5; -1 0 -2; 3 -4 1]
3×3 Array{Int64,2}:
-3 2 -5
-1 0 -2
3 -4 1
在我看来,这是为了计算B
的转置而不是其伴随。相反,我们应该从wikipedia得到这个:
并尝试使用adjoint()
函数来获得其伴随,尽管文档未具体说明此函数的作用,但茱莉亚文档here中提到了该函数
julia> adjoint(B)
3×3 Adjoint{Int64,Array{Int64,2}}:
-3 -1 3
2 0 -4
-5 -2 1
相反,我想得到这个:
在Matlab中,我确实得到了
>> adjoint(B)
ans =
-8.0000 18.0000 -4.0000
-5.0000 12.0000 -1.0000
4.0000 -6.0000 2.0000
答案 0 :(得分:6)
朱莉娅的伴随被定义为输入矩阵的复共轭的转置。但是,您似乎希望使用 adjugate 矩阵:
有时将佐剂称为“伴随”,但如今,矩阵的“伴随”通常是指其对应的伴随运算符,即其共轭转置。
您可以先对求反矩阵求反,然后乘以行列式:
julia> det(B) * inv(B)
3×3 Array{Float64,2}:
-8.0 18.0 -4.0
-5.0 12.0 -1.0
4.0 -6.0 2.0
感谢Julia Slack上的@Antoine Levitt和@Syx Pek提供了行列式求逆和乘积的建议。
原始答案:
佐剂矩阵似乎是辅因子矩阵的转置。以下是发现辅助因子的简单方法:
# import Pkg; Pkg.add("InvertedIndices")
using InvertedIndices # for cleaner code, you can remove this if you really want to.
function cofactor(A::AbstractMatrix, T = Float64)
ax = axes(A)
out = similar(A, T, ax)
for col in ax[1]
for row in ax[2]
out[col, row] = (-1)^(col + row) * det(A[Not(col), Not(row)])
end
end
return out
end
然后,要找到辅助词,只需要转置(transpose(cofactor(B))
)。
答案是:
julia> cofactor(B, Float64) |> transpose
3×3 Transpose{Float64,Array{Float64,2}}:
-8.0 18.0 -4.0
-5.0 12.0 -1.0
4.0 -6.0 2.0
与Matlab所提供的等效。
编辑:Julia松弛上的@Antoine Levitt指出,这实际上是一个重新缩放的逆矩阵,因此,如果您知道缩放比例,则可以执行inv(B) * scaling_factor
(对于此矩阵,它是6)。