Return (self * i), that is string multiple concatenation, element-wise. See also -------- multiply
(self, i)
| 2104 | return asarray(add(numpy.asarray(other), self)) |
| 2105 | |
| 2106 | def __mul__(self, i): |
| 2107 | """ |
| 2108 | Return (self * i), that is string multiple concatenation, |
| 2109 | element-wise. |
| 2110 | |
| 2111 | See also |
| 2112 | -------- |
| 2113 | multiply |
| 2114 | """ |
| 2115 | return asarray(multiply(self, i)) |
| 2116 | |
| 2117 | def __rmul__(self, i): |
| 2118 | """ |