Template Function librapid::array::operator/#

Function Documentation#

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

Element-wise array division.

Performs element-wise division 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 division of the two arrays