MCPcopy Index your code
hub / github.com/numpy/numpy / __rpow__

Method __rpow__

numpy/ma/core.py:4396–4401  ·  view source on GitHub ↗

Raise other to the power self, masking the potential NaNs/Infs

(self, other)

Source from the content-addressed store, hash-verified

4394 return power(self, other)
4395
4396 def __rpow__(self, other):
4397 """
4398 Raise other to the power self, masking the potential NaNs/Infs
4399
4400 """
4401 return power(other, self)
4402
4403 def __iadd__(self, other):
4404 """

Callers

nothing calls this directly

Calls 1

powerFunction · 0.70

Tested by

no test coverage detected