]> AND Private Git Repository - cours-mesi.git/blobdiff - tps/chap3/ordre.py
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
j
[cours-mesi.git] / tps / chap3 / ordre.py
index 95517ffc67be2088680975980bbaa331859fecd5..00283a85314a24951d1cd3cc8a759fd595edf6e3 100644 (file)
@@ -22,16 +22,17 @@ def ordre_convergence(X,l=None) :
 
 def main():
 
-    print "TP 3.2 ............ ordre convergence corde"
-    print ordre_convergence(iteration_corde(0,pi/2,0,200,0.00000001,f)[1])
+    print "TP 4.2 ............ ordre convergence corde"
+    print ordre_convergence(iteration_corde(0,pi/2,0,200,1E-9,f)[1])
 
 
-    print "TP 3.2 ............ ordre convergence newton"
-    print ordre_convergence(iteration_newton(0,200,0.00000001,f,fp)[1])
+    print "TP 4.2 ............ ordre convergence lagrange"
+    print ordre_convergence(iteration_lagrange(0,pi/2,200,1E-9,f)[1])
 
 
-    print "TP 3.1 ............ ordre convergence lagrange"
-    print ordre_convergence(iteration_lagrange(0,pi/2,200,0.00000001,f)[1])
+    print "TP 4.2 ............ ordre convergence newton"
+    print ordre_convergence(iteration_newton(0,200,1E-9,f,fp)[1])
+
 
 
 if __name__ == '__main__':