Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 242 Bytes

helpers.minmax.rst

File metadata and controls

23 lines (15 loc) · 242 Bytes

minmax

k3d.helpers.minmax

Examples

import k3d

arr = [7, 0, -2, 13, 1]

min_max = k3d.helpers.minmax(arr)

"""
[-2.0, 13.0]
"""