Eigen_det | R Documentation |
Determinant of a real or complex matrix.
Eigen_det(M)
M |
a square matrix or |
The determinant of M
.
set.seed(666)
M <- matrix(rpois(25, 1), 5L, 5L)
Eigen_det(M)
# determinants of complex matrices are supported:
Eigen_det(M + 1i * M)
# as well as determinants of sparse matrices:
Eigen_det(asSparseMatrix(M))
Eigen_det(asSparseMatrix(M + 1i * M))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.