Computes Σ=A−1B(A−1)T with provided A and B matrices.
compute_sigma(A, B, solver = solve)
a matrix, generally the .A
slot in a
sandwich_components
object created in
estimate_sandwich_matrices
a matrix, generally the .B
slot in a
sandwich_components
object created in
estimate_sandwich_matrices
the function used to compute the inverse of A
, Defaults
to solve
the matrix
Ainv %*% B %*% t(Ainv)