MCPcopy Create free account
hub / github.com/Lauriat/funct / sub

Method sub

funct/Array.py:63–67  ·  view source on GitHub ↗

Element-wise subtraction with given scalar or sequence.

(self, e, inplace=False)

Source from the content-addressed store, hash-verified

61 return self
62
63 def sub(self, e, inplace=False):
64 """
65 Element-wise subtraction with given scalar or sequence.
66 """
67 return self.__operate(operator.sub, e, inplace)
68
69 def sub_(self, e):
70 """

Callers 1

diffMethod · 0.80

Calls 1

__operateMethod · 0.95

Tested by

no test coverage detected