MCPcopy Create free account
hub / github.com/PythonOT/POT / max

Method max

ot/backend.py:1181–1182  ·  view source on GitHub ↗
(self, a, axis=None, keepdims=False)

Source from the content-addressed store, hash-verified

1179 return np.cumsum(a, axis)
1180
1181 def max(self, a, axis=None, keepdims=False):
1182 return np.max(a, axis, keepdims=keepdims)
1183
1184 def min(self, a, axis=None, keepdims=False):
1185 return np.min(a, axis, keepdims=keepdims)

Callers

nothing calls this directly

Calls 1

maxMethod · 0.45

Tested by

no test coverage detected