Learn R Programming

calculus (version 0.3.2)

mxdet: Numerical and Symbolic Determinant

Description

Computes the determinant of a numeric or character matrix.

Usage

mxdet(x)

Arguments

x

numeric or character matrix.

Value

numeric or character.

References

Guidotti, E. (2020). "calculus: High dimensional numerical and symbolic calculus in R". https://arxiv.org/abs/2101.00086

See Also

Other matrix algebra: mxinv(), mxtr(), mx()

Examples

Run this code
# NOT RUN {
### numeric matrix
x <- matrix(1:4, nrow = 2)
mxdet(x)

### symbolic matrix
x <- matrix(letters[1:4], nrow = 2)
mxdet(x)

# }

Run the code above in your browser using DataLab