Points.min¶
- Points.min()¶
Returns a nimble object representing the minimum value along the points axis.
See also
maximum
Examples
>>> lst = [[0, 22, 2], [3, 22, 5]] >>> X = nimble.data(lst) >>> X.points.min() <Matrix 2pt x 1ft min ┌──── 0 │ 0 1 │ 3 >