Return (self * i), that is string multiple concatenation, element-wise. See Also -------- multiply
(self, i)
| 2211 | return asarray(multiply(self, i)) |
| 2212 | |
| 2213 | def __rmul__(self, i): |
| 2214 | """ |
| 2215 | Return (self * i), that is string multiple concatenation, |
| 2216 | element-wise. |
| 2217 | |
| 2218 | See Also |
| 2219 | -------- |
| 2220 | multiply |
| 2221 | """ |
| 2222 | return asarray(multiply(self, i)) |
| 2223 | |
| 2224 | def __mod__(self, i): |
| 2225 | """ |