(self, t=None, copy=None)
| 1275 | self._variable = variable |
| 1276 | |
| 1277 | def __array__(self, t=None, copy=None): |
| 1278 | if t: |
| 1279 | return NX.asarray(self.coeffs, t, copy=copy) |
| 1280 | else: |
| 1281 | return NX.asarray(self.coeffs, copy=copy) |
| 1282 | |
| 1283 | def __repr__(self): |
| 1284 | vals = repr(self.coeffs) |