Test ArrayZ array constructor
(self)
| 282 | self.assertTrue(isinstance(self.array3, Array.ArrayZ)) |
| 283 | |
| 284 | def testConstructor2(self): |
| 285 | "Test ArrayZ array constructor" |
| 286 | na = np.arange(self.length, dtype=np.complex128) |
| 287 | aa = Array.ArrayZ(na) |
| 288 | self.assertTrue(isinstance(aa, Array.ArrayZ)) |
| 289 | |
| 290 | def testConstructor3(self): |
| 291 | "Test ArrayZ copy constructor" |