Back to functions

determinant


Matrix determinant

Computes the determinant of a matrix

Usage: nerdamer("determinant(M)")


Parameters

Matrix M The matrix for which the determinant is to be calculated.

Returns

Expression

EXAMPLES:
nerdamer.setVar('M', 'matrix([4,5],[1,7])');
x = nerdamer('determinant(M)');
console.log(x.toString());
OUTPUT:
Back to functions