Skip to main content

product

Overloads

NameDescription
product(const ComplexMatrix lhs) -> complexReturns the product of the elements in the ComplexMatrix.
product(const RealArray lhs, const List axes) -> RealArrayReturns the product value of the elements in the RealArray along the given dimensions.
product(const RealArray lhs) -> realReturns the product of the elements in the RealArray.
product(const BoolArray lhs, const List axes) -> BoolArrayReturns the product value of the elements in the BoolArray along the given dimensions.
product(const IntegerArray lhs, const List axes) -> IntegerArrayReturns the product value of the elements in the IntegerArray along the given dimensions.
product(const ComplexMatrix lhs, const List axes) -> ComplexMatrixReturns the product value of the elements in the ComplexMatrix along the given dimensions.
product(const ComplexArray lhs) -> complexReturns the product of the elements in the ComplexArray.
product(const RealMatrix lhs) -> realReturns the product of the elements in the RealMatrix.
product(const ComplexArray lhs, const List axes) -> ComplexArrayReturns the product value of the elements in the ComplexArray along the given dimensions.
product(const RealMatrix lhs, const List axes) -> RealMatrixReturns the product value of the elements in the RealMatrix along the given dimensions.
product(const IntegerArray lhs) -> integerReturns the product of the elements in the IntegerArray.
product(const BoolArray lhs) -> boolReturns the product of the elements in the BoolArray.

product(const ComplexMatrix lhs) -> complex

Returns the product of the elements in the ComplexMatrix.

Parameters

product(const RealArray lhs, const List axes) -> RealArray

Returns the product value of the elements in the RealArray along the given dimensions.

Parameters

  • lhs: The RealArray to analyze.
  • axes: Axes to reduce over.

product(const RealArray lhs) -> real

Returns the product of the elements in the RealArray.

Parameters

product(const BoolArray lhs, const List axes) -> BoolArray

Returns the product value of the elements in the BoolArray along the given dimensions.

Parameters

  • lhs: The BoolArray to analyze.
  • axes: Axes to reduce over.

product(const IntegerArray lhs, const List axes) -> IntegerArray

Returns the product value of the elements in the IntegerArray along the given dimensions.

Parameters

  • lhs: The IntegerArray to analyze.
  • axes: Axes to reduce over.

product(const ComplexMatrix lhs, const List axes) -> ComplexMatrix

Returns the product value of the elements in the ComplexMatrix along the given dimensions.

Parameters

product(const ComplexArray lhs) -> complex

Returns the product of the elements in the ComplexArray.

Parameters

product(const RealMatrix lhs) -> real

Returns the product of the elements in the RealMatrix.

Parameters

product(const ComplexArray lhs, const List axes) -> ComplexArray

Returns the product value of the elements in the ComplexArray along the given dimensions.

Parameters

  • lhs: The ComplexArray to analyze.
  • axes: Axes to reduce over.

product(const RealMatrix lhs, const List axes) -> RealMatrix

Returns the product value of the elements in the RealMatrix along the given dimensions.

Parameters

  • lhs: The RealMatrix to analyze.
  • axes: Axes to reduce over.

product(const IntegerArray lhs) -> integer

Returns the product of the elements in the IntegerArray.

Parameters

product(const BoolArray lhs) -> bool

Returns the product of the elements in the BoolArray.

Parameters