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

Method min

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

Source from the content-addressed store, hash-verified

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)
1186
1187 def maximum(self, a, b):
1188 return np.maximum(a, b)

Callers

nothing calls this directly

Calls 1

minMethod · 0.45

Tested by

no test coverage detected