Return (self * i), that is string multiple concatenation, element-wise. See also -------- multiply
(self, i)
| 2115 | return asarray(multiply(self, i)) |
| 2116 | |
| 2117 | def __rmul__(self, i): |
| 2118 | """ |
| 2119 | Return (self * i), that is string multiple concatenation, |
| 2120 | element-wise. |
| 2121 | |
| 2122 | See also |
| 2123 | -------- |
| 2124 | multiply |
| 2125 | """ |
| 2126 | return asarray(multiply(self, i)) |
| 2127 | |
| 2128 | def __mod__(self, i): |
| 2129 | """ |