Esempio n. 1
0
def polydd():
    xa = numx.arange(100) / 100.0 * 2. * numx.pi
    ya = numx.sin(xa)
    dd = poly.poly_dd(xa, ya)
    dd.eval(0)        
    c = dd.taylor(0.0)
Esempio n. 2
0
 def setUp(self):
     xa = Numeric.arange(100) / 100.0 * 2. * Numeric.pi
     ya = Numeric.sin(xa)
     self.dd = poly.poly_dd(xa, ya)
Esempio n. 3
0
def polydd():
    xa = numx.arange(100) / 100.0 * 2. * numx.pi
    ya = numx.sin(xa)
    dd = poly.poly_dd(xa, ya)
    dd.eval(0)
    c = dd.taylor(0.0)
Esempio n. 4
0
 def setUp(self):
     xa = Numeric.arange(100) / 100.0 * 2. * Numeric.pi
     ya = Numeric.sin(xa)
     self.dd = poly.poly_dd(xa, ya)