Author | Message |
---|---|
mohanmb91
Posts: 12
|
Posted 03:30 Jan 13, 2016 |
3pts Create a method called "multiply" that takes a matrix and multiplies (dot product) this matrix against a matrix passed in and returns the result. If the shapes are incompatible, print "Shapes are incompatable" and return None. from the above posted question wat's a dot product ?? is it "matrix vector multiplication or some thing else ?? " thanks in advance :) |
vsluong4
Posts: 87
|
Posted 09:44 Jan 13, 2016 |
|
easauceda
Posts: 3
|
Posted 18:04 Jan 14, 2016 |
Yeah, matrix multiplication. In case you need a refresher (i did, and I took it a few quarters ago): https://www.mathsisfun.com/algebra/matrix-multiplying.html |