Skip to main content

min

Overloads

NameDescription
min(const RealArray lhs, const List axes) -> RealArrayReturns the minimum value of the elements in the RealArray along the given dimensions.
min(const RealArray lhs) -> realReturns the minimum value of the elements in the RealArray.
min(const RealMatrix lhs, const List axes) -> RealMatrixReturns the minimum value of the elements in the RealMatrix along the given dimensions.
min(const RealMatrix lhs) -> realReturns the minimum value of the elements in the RealMatrix.

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

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

Parameters

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

min(const RealArray lhs) -> real

Returns the minimum value of the elements in the RealArray.

Parameters

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

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

Parameters

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

min(const RealMatrix lhs) -> real

Returns the minimum value of the elements in the RealMatrix.

Parameters