make
Specification
Location | Author | Maintained by |
---|---|---|
isl/math/matrix3.py | Kenny Erleben | DIKU |
Purpose & Params
Converts an 9 real values to a 3 by 3 matrix.
Example
a,b,c,d,e,f,h,i,j = 1,2,3,4,5,6,7,8,9
mat3.make(a,b,c,d,e,f,h,i,j)
output:
array([[1., 2., 3.],
[4., 5., 6.],
[7., 8., 9.]])