MCPcopy Index your code
hub / github.com/dask/dask / ptp

Function ptp

dask/array/routines.py:570–571  ·  view source on GitHub ↗
(a, axis=None)

Source from the content-addressed store, hash-verified

568
569@derived_from(np)
570def ptp(a, axis=None):
571 return a.max(axis=axis) - a.min(axis=axis)
572
573
574@derived_from(np)

Callers

nothing calls this directly

Calls 2

maxMethod · 0.45
minMethod · 0.45

Tested by

no test coverage detected