Calculates the multiplication of two tensors.
The first tensor
The second tensor
const result = Chalkboard.tens.mul([[1, 2], [3, 4]], [[2, 3], [4, 5]]); // Returns the elementwise product Copy
const result = Chalkboard.tens.mul([[1, 2], [3, 4]], [[2, 3], [4, 5]]); // Returns the elementwise product
Calculates the multiplication of two tensors.