min
Overloads
| Name | Description |
|---|---|
min(const RealArray lhs, const List axes) -> RealArray | Returns the minimum value of the elements in the RealArray along the given dimensions. |
min(const RealArray lhs) -> real | Returns the minimum value of the elements in the RealArray. |
min(const RealMatrix lhs, const List axes) -> RealMatrix | Returns the minimum value of the elements in the RealMatrix along the given dimensions. |
min(const RealMatrix lhs) -> real | Returns 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
- lhs: The RealArray to analyze.
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
- lhs: The RealMatrix to analyze.