compute_sigma | R Documentation |
Computes Σ = A^{-1} B (A^{-1})^T with provided A and B matrices.
compute_sigma(A, B, solver = solve)
A |
a matrix, generally the |
B |
a matrix, generally the |
solver |
the function used to compute the inverse of |
the matrix
Ainv %*% B %*% t(Ainv)
A <- diag(2, nrow = 2, ncol = 2) B <- matrix(4, nrow = 2, ncol = 2) compute_sigma(A = A, B = B)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.