MCPcopy Create free account
hub / github.com/numpy/numpy / __isub__

Method __isub__

numpy/lib/user_array.py:75–77  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

73 return self._rc(asarray(other) - self.array)
74
75 def __isub__(self, other):
76 subtract(self.array, other, self.array)
77 return self
78
79 def __mul__(self, other):
80 return self._rc(multiply(self.array, asarray(other)))

Callers

nothing calls this directly

Calls 1

subtractFunction · 0.85

Tested by

no test coverage detected