S4 method of det defined for DenseMatrix.

det(x, ...)

# S4 method for DenseMatrix
det(x, ...)

Arguments

x

A DenseMatrix object.

...

Unused.

Value

A Basic object.

Examples

mat <- Matrix(LETTERS[1:9], 3)
det(mat)
#> (Add)	im*A*exp(1) + B*F*G + C*D*H - (im*B*D + A*F*H + C*G*exp(1))