Пример #1
0
 def testChebMat(self):
     c = ChebyshevInterpolator(cauchy, -2, 2)
     y = c.interp_at(self.x_mat)
     #print self.x_mat
     #print y
     self.assertTrue(0 < 1)
Пример #2
0
 def testCheb(self):
     c = ChebyshevInterpolator(cauchy, -2, 2)
     y = c.interp_at(self.x)
     #print self.x,y
     #plot(self.x, y)
     self.assertTrue(0 < 1)
Пример #3
0
 def testChebFor(self):
     c = ChebyshevInterpolator(cauchy, -2, 2)
     y = [c.interp_at(x) for x in self.x]
     #print self.x,y
     #plot(self.x, y)
     self.assertTrue(0 < 1)
Пример #4
0
 def testChebMat(self):
     c = ChebyshevInterpolator(cauchy, -2, 2)
     y = c.interp_at(self.x_mat)
     #print self.x_mat
     #print y
     self.assertTrue(0 < 1)
Пример #5
0
 def testCheb(self):
     c = ChebyshevInterpolator(cauchy, -2, 2)
     y = c.interp_at(self.x)
     #print self.x,y
     #plot(self.x, y)
     self.assertTrue(0 < 1)
Пример #6
0
 def testChebFor(self):
     c = ChebyshevInterpolator(cauchy, -2, 2)
     y = [c.interp_at(x) for x in self.x]
     #print self.x,y
     #plot(self.x, y)
     self.assertTrue(0 < 1)