powered by
Calculates the determinant of a matrix.
det(x)
numeric or character matrix.
numeric or character determinant.
# NOT RUN { # numeric matrix x <- matrix(1:4, nrow = 2) det(x) # symbolic matrix x <- matrix(letters[1:4], nrow = 2) det(x) # }
Run the code above in your browser using DataLab