Ac_rdiv_B
Ac_rdiv_B(A, B)
For matrices or vectors $A$ and $B$, calculates $Aá´´ / B$
Examples
julia> A = [1 2; 3 4]
2×2 Matrix{Int64}:
1 2
3 4
julia> B = [5 6; 7 8]
2×2 Matrix{Int64}:
5 6
7 8
julia> Ac_rdiv_B(A, B)
2×2 Matrix{ComplexF64}:
-0.666667+0.133333im -0.166667-0.0333333im
0.166667-0.0333333im 0.666667+0.133333im
This example demonstrates how to use the Ac_rdiv_B
function to calculate the Hermitian conjugate of matrix A
divided by matrix B
. The resulting matrix will have complex elements.
See Also
Ac_ldiv_B, Ac_ldiv_Bc, Ac_mul_B, Ac_mul_Bc, Ac_rdiv_B, Ac_rdiv_Bc, At_ldiv_B, At_ldiv_Bt, At_mul_B, At_mul_Bt, At_rdiv_B, At_rdiv_Bt, A_ldiv_Bc, A_ldiv_Bt, A_mul_B!, A_mul_Bc, A_mul_Bt, A_rdiv_Bc, A_rdiv_Bt, Bidiagonal, cond, conv2, det, diag, diagind, diagm, diff, eig, eigvals, eigvecs, expm, eye, full, inv, isdiag, ishermitian, isposdef, isposdef!, issym, istril, istriu, logabsdet, logdet, lyap, norm, qrfact, rank, repmat, rot180, rotl90, rotr90, sortrows, sqrtm, SymTridiagonal, trace, Tridiagonal, tril, tril!, triu, triu!, writedlm,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.