Skip to content
This repository was archived by the owner on May 21, 2020. It is now read-only.
Florian Rappl edited this page Dec 21, 2014 · 2 revisions

det

Calculates the determinant of the given matrix.

References

det(M)

Uses the best algorithm to compute the determinant.

Argument M

Matrix

Returns 1. entry

Scalar

Example

det([1,3;-1,0])

Computes the determinant of the matrix [1,3;-1,0]; returns 3.

det(x)

Returns the argument.

Argument x

Scalar

Returns 1. entry

Scalar

Example

det(5)

The determinant of a 1x1 matrix is the argument itself.

Clone this wiki locally