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

Method median

ot/backend.py:1687–1688  ·  view source on GitHub ↗
(self, a, axis=None)

Source from the content-addressed store, hash-verified

1685 return jnp.mean(a, axis=axis)
1686
1687 def median(self, a, axis=None):
1688 return jnp.median(a, axis=axis)
1689
1690 def std(self, a, axis=None):
1691 return jnp.std(a, axis=axis)

Callers

nothing calls this directly

Calls 1

medianMethod · 0.45

Tested by

no test coverage detected