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