MCPcopy Index your code
hub / github.com/pydata/xarray / imag

Method imag

xarray/core/variable.py:2410–2418  ·  view source on GitHub ↗

The imaginary part of the variable. See Also -------- numpy.ndarray.imag

(self)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

_newMethod · 0.95

Tested by

no test coverage detected