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

Method real

xarray/core/variable.py:2421–2429  ·  view source on GitHub ↗

The real part of the variable. See Also -------- numpy.ndarray.real

(self)

Source from the content-addressed store, hash-verified

2419
2420 @property
2421 def real(self) -> Variable:
2422 """
2423 The real part of the variable.
2424
2425 See Also
2426 --------
2427 numpy.ndarray.real
2428 """
2429 return self._new(data=self.data.real)
2430
2431 def __array_wrap__(self, obj, context=None, return_scalar=False):
2432 return Variable(self.dims, obj)

Callers

nothing calls this directly

Calls 1

_newMethod · 0.95

Tested by

no test coverage detected