MCPcopy Index your code
hub / github.com/plotly/plotly.js / determinant_2

Function determinant_2

stackgl_modules/index.js:34212–34216  ·  view source on GitHub ↗
(sum, scale, prod, compress)

Source from the content-addressed store, hash-verified

34210var NUM_EXPANDED = 6
34211
34212function determinant_2(sum, scale, prod, compress) {
34213 return function robustDeterminant2(m) {
34214 return compress(sum(prod(m[0][0], m[1][1]), prod(-m[0][1], m[1][0])))
34215 }
34216}
34217
34218function determinant_3(sum, scale, prod, compress) {
34219 return function robustDeterminant3(m) {

Callers

nothing calls this directly

Calls 1

sumFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…