The imaginary part of the variable. See Also -------- numpy.ndarray.imag
(self)
| 2408 | |
| 2409 | @property |
| 2410 | def imag(self) -> Variable: |
| 2411 | """ |
| 2412 | The imaginary part of the variable. |
| 2413 | |
| 2414 | See Also |
| 2415 | -------- |
| 2416 | numpy.ndarray.imag |
| 2417 | """ |
| 2418 | return self._new(data=self.data.imag) |
| 2419 | |
| 2420 | @property |
| 2421 | def real(self) -> Variable: |