Skip to main content

max

Overloads

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

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

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

Parameters

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

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

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

Parameters

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

max(const RealMatrix lhs) -> real

Returns the maximum value of the elements in the RealMatrix.

Parameters

max(const RealArray lhs) -> real

Returns the maximum value of the elements in the RealArray.

Parameters