You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
original Code from util
def mult_matrix((a1, b1, c1, d1, e1, f1), (a0, b0, c0, d0, e0, f0)):
"""Returns the multiplication of two matrices."""
return (a0a1+c0b1, b0a1+d0b1,
a0c1+c0d1, b0c1+d0d1,
a0e1+c0f1+e0, b0e1+d0f1+f0)
Always I know the matrix like this matrix([[ 0., 0., 0.],[ 0., 0., 0.],[ 0., 0., 0.]]) 33 matrix
I don't know the matrix (a1, b1, c1, d1, e1, f1) is 16 matrix ? who can help me ? Thanks
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
original Code from util
def mult_matrix((a1, b1, c1, d1, e1, f1), (a0, b0, c0, d0, e0, f0)):
"""Returns the multiplication of two matrices."""
return (a0a1+c0b1, b0a1+d0b1,
a0c1+c0d1, b0c1+d0d1,
a0e1+c0f1+e0, b0e1+d0f1+f0)
Always I know the matrix like this matrix([[ 0., 0., 0.],[ 0., 0., 0.],[ 0., 0., 0.]]) 33 matrix
I don't know the matrix (a1, b1, c1, d1, e1, f1) is 16 matrix ? who can help me ? Thanks
The text was updated successfully, but these errors were encountered: