예제 #1
0
 def test_empty(self):
     a1 = ctf.empty((2, 3, 4))
     a1 = ctf.empty((2, 3, 4), dtype=numpy.complex128)
     a1 = ctf.empty_like(a1)
     self.assertTrue(a1.dtype == numpy.complex128)
예제 #2
0
파일: test_base.py 프로젝트: solomonik/ctf
 def test_empty(self):
     a1 = ctf.empty((2,3,4))
     a1 = ctf.empty((2,3,4), dtype=numpy.complex128)
     a1 = ctf.empty_like(a1)
     self.assertTrue(a1.dtype == numpy.complex128)