MCPcopy Create free account
hub / github.com/DjDeveloperr/deno_desktop / determinant

Method determinant

examples/extern/gmath.bundle.js:882–884  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

880 return this[0][0] + this[1][1];
881 }
882 determinant() {
883 return matrix2determinant(this.ptr);
884 }
885 invert() {
886 const ptr = matrix2invert(this.ptr);
887 if (ptr !== 0) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected