There was an error while loading. Please reload this page.
Returns the determinant of a square matrix.
d = pymath.determinant(A)
A
n × n
n
d
number
local A = {{4, 7}, {2, 6}} local d = pymath.determinant(A) -- d == 10 local S = {{1, 2}, {2, 4}} -- singular local ds = pymath.determinant(S) -- ds == 0
Minimum PYTHA Version: V27
pymath, pymath.dot, pymath.solve_linear, pymath.inverse