(self)
| 180 | assert isinstance(result.data, self.Array) |
| 181 | |
| 182 | def test_corr(self): |
| 183 | result = xr.corr(self.x1, self.x2) |
| 184 | assert isinstance(result.data, self.Array) |
| 185 | |
| 186 | def test_cross(self): |
| 187 | x1, x2 = xr.align(self.x1.squeeze(), self.x2.squeeze(), join="inner") |