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

Method mul

funct/Array.py:77–81  ·  view source on GitHub ↗

Element-wise multiplication with given scalar or sequence.

(self, e, inplace=False)

Source from the content-addressed store, hash-verified

75 return self
76
77 def mul(self, e, inplace=False):
78 """
79 Element-wise multiplication with given scalar or sequence.
80 """
81 return self.__operate(operator.mul, e, inplace)
82
83 def mul_(self, e):
84 """

Callers 2

averageMethod · 0.95
testMethod · 0.95

Calls 1

__operateMethod · 0.95

Tested by 1

testMethod · 0.76