In this code fragment, what will the values of c and d be equivalent to?
import numpy as np
a = np.array([1,2,3])
b = np.array([4,5,6])
c = a*b
d = np.dot(a,b)
In this code fragment, what will the values of c and d be equivalent to?
import numpy as np
a = np.array([1,2,3])
b = np.array([4,5,6])
c = a*b
d = np.dot(a,b)