Skip to content

Commit

Permalink
Add correct parameters to determinant3 function
Browse files Browse the repository at this point in the history
  • Loading branch information
justinfernald authored Jul 9, 2024
1 parent 626d198 commit 8938b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const d = determinant2(1, 1, 2, 2);
Returns the determinant of a passed 3x3 matrix:
```js
const d = determinant3(1, 1, 1, 2, 2, 2);
const d = determinant3(1, 1, 1, 2, 2, 2, 3, 3, 3);
```
#### 🪶 determinant4(...matrixInRowMajorOrder) // TBD
Expand Down

0 comments on commit 8938b56

Please sign in to comment.