adjoint | R Documentation |
Compute the classical adjoint (also called adjugate) of a square matrix. The adjoint is the transpose of the cofactor matrix.
adjoint(A)
A |
a square matrix. |
The adjoint matrix of A (square matrix with the same dimension as A).
cofactor
, minor
A <- matrix(c(1,4,5,3,7,2,2,8,3),nrow=3,ncol=3) A B <- adjoint(A) B
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.