How to multiply arrays #3045
KGhennam
started this conversation in
Deprecations
Replies: 1 comment
-
array1 * array2 or np.multiply(array1, array2) This is elementwise multiplication between two arrays. If you want to multiply all the elements of a single array, that's np.sum(array) possibly with an |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Beta Was this translation helpful? Give feedback.
All reactions