Jump to content

Determinant and permanent: Difference between revisions

(Add Factor example)
(→‎{{header|Go}}: added GLSL)
Line 655:
</pre>
 
=={{header|GLSL}}==
<lang glsl>
mat4 m1 = mat3(1, 2, 3, 4,
5, 6, 7, 8
9,10,11,12,
13,14,15,16);
 
float d = det(m1);
</lang>
=={{header|Go}}==
===Implementation===
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.