(self)
| 144 | assert_equal(x, xm) |
| 145 | |
| 146 | def test_concatenate_basic(self): |
| 147 | # Tests concatenations. |
| 148 | (x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d |
| 149 | # basic concatenation |
| 150 | assert_equal(np.concatenate((x, y)), concatenate((xm, ym))) |
| 151 | assert_equal(np.concatenate((x, y)), concatenate((x, y))) |
| 152 | assert_equal(np.concatenate((x, y)), concatenate((xm, y))) |
| 153 | assert_equal(np.concatenate((x, y, x)), concatenate((x, ym, x))) |
| 154 | |
| 155 | def test_concatenate_alongaxis(self): |
| 156 | # Tests concatenations. |
nothing calls this directly
no test coverage detected