I have 2 matrices that I need to multiply in the same way we normally add matrices.
a=(1,3,5)
b=(2,4,6)
a*b=(2,12,30)
How can I get this result? I want to multiply the first row with the first row and make that the new first row, etc.
I have 2 matrices that I need to multiply in the same way we normally add matrices.
a=(1,3,5)
b=(2,4,6)
a*b=(2,12,30)
How can I get this result? I want to multiply the first row with the first row and make that the new first row, etc.