5 lines
61 B
Python
5 lines
61 B
Python
|
|
import numpy as np
|
||
|
|
np.dot(a,b)
|
||
|
|
#or if a is an array
|
||
|
|
a.dot(b)
|