Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Cleaner einsum solution in 3rd party category for Multiply (Intro) by dx2-66
import numpy as np
def mult_two(a, b):
return np.einsum('i,i', [a], [b])
April 22, 2022
Comments: