Return (self * i), that is string multiple concatenation, element-wise. See Also -------- multiply
(self, i)
| 2200 | return asarray(add(numpy.asarray(other), self)) |
| 2201 | |
| 2202 | def __mul__(self, i): |
| 2203 | """ |
| 2204 | Return (self * i), that is string multiple concatenation, |
| 2205 | element-wise. |
| 2206 | |
| 2207 | See Also |
| 2208 | -------- |
| 2209 | multiply |
| 2210 | """ |
| 2211 | return asarray(multiply(self, i)) |
| 2212 | |
| 2213 | def __rmul__(self, i): |
| 2214 | """ |