Template Function librapid::array::operator*#

Function Documentation#

template<class LHS, class RHS>
auto librapid::array::operator*(LHS &&lhs, RHS &&rhs)#

Element-wise array multiplication.

Performs element-wise multiplication on two arrays. They must both be the same size and of the same data type.

Template Parameters
  • LHS – Type of the LHS element

  • RHS – Type of the RHS element

Parameters
  • lhs – The first array

  • rhs – The second array

Returns

The element-wise product of the two arrays