@@ -359,7 +359,7 @@ function mean(v) = sum(v)/len(v);
// M = The 2x2 square matrix to get the determinant of.
// Example:
// M = [ [6,-2], [1,8] ];
// det = det3(M); // Returns: 50
// det = det2(M); // Returns: 50
functiondet2(M)=M[0][0]*M[1][1]-M[0][1]*M[1][0];
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.