Changeset 131
- Timestamp:
- 03/29/09 13:09:27 (7 years ago)
- Files:
-
- 2 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
mystic/examples/example02.py
r126 r131 43 43 44 44 # draw the plot 45 pylab. suptitle("minimium of Rosenbrock's function")45 pylab.title("minimium of Rosenbrock's function") 46 46 pylab.xlabel("x, y, z") 47 47 pylab.ylabel("f(i) = Rosenbrock's function") -
mystic/examples/example03.py
r126 r131 37 37 38 38 # draw the plot 39 pylab. suptitle("Rosenbrock parameter convergence")39 pylab.title("Rosenbrock parameter convergence") 40 40 pylab.xlabel("Nelder-Mead solver iterations") 41 41 pylab.ylabel("parameter value") -
mystic/examples/example04.py
r126 r131 26 26 # draw the plot 27 27 def plot_frame(): 28 pylab. suptitle("Rosenbrock parameter convergence")28 pylab.title("Rosenbrock parameter convergence") 29 29 pylab.xlabel("Nelder-Mead solver iterations") 30 30 pylab.ylabel("parameter value") -
mystic/examples/example06.py
r126 r131 25 25 # draw the plot 26 26 def plot_exact(): 27 pylab. suptitle("fitting 8th-order Chebyshev polynomial coefficients")27 pylab.title("fitting 8th-order Chebyshev polynomial coefficients") 28 28 pylab.xlabel("x") 29 29 pylab.ylabel("f(x)") -
mystic/examples/example07.py
r126 r131 26 26 # draw the plot 27 27 def plot_exact(): 28 pylab. suptitle("fitting 8th-order Chebyshev polynomial coefficients")28 pylab.title("fitting 8th-order Chebyshev polynomial coefficients") 29 29 pylab.xlabel("x") 30 30 pylab.ylabel("f(x)") -
mystic/examples/example08.py
r126 r131 31 31 # draw the plot 32 32 def plot_exact(): 33 pylab. suptitle("fitting 8th-order Chebyshev polynomial coefficients")33 pylab.title("fitting 8th-order Chebyshev polynomial coefficients") 34 34 pylab.xlabel("x") 35 35 pylab.ylabel("f(x)") -
mystic/examples/example09.py
r126 r131 33 33 # draw the plot 34 34 def plot_exact(): 35 pylab. suptitle("fitting 8th-order Chebyshev polynomial coefficients")35 pylab.title("fitting 8th-order Chebyshev polynomial coefficients") 36 36 pylab.xlabel("x") 37 37 pylab.ylabel("f(x)") -
mystic/examples/example10.py
r126 r131 32 32 def plot_frame(label=None): 33 33 pylab.close() 34 pylab. suptitle("8th-order Chebyshev coefficient convergence")34 pylab.title("8th-order Chebyshev coefficient convergence") 35 35 pylab.xlabel("Differential Evolution %s" % label) 36 36 pylab.ylabel("Chi-Squared") -
mystic/examples/example11.py
r126 r131 32 32 def plot_frame(label=None): 33 33 pylab.close() 34 pylab. suptitle("8th-order Chebyshev coefficient convergence")34 pylab.title("8th-order Chebyshev coefficient convergence") 35 35 pylab.xlabel("Nelder-Mead Simplex Solver %s" % label) 36 36 pylab.ylabel("Chi-Squared") … … 52 52 # draw the plot 53 53 def plot_exact(): 54 pylab. suptitle("fitting 8th-order Chebyshev polynomial coefficients")54 pylab.title("fitting 8th-order Chebyshev polynomial coefficients") 55 55 pylab.xlabel("x") 56 56 pylab.ylabel("f(x)") -
mystic/examples/example12.py
r129 r131 56 56 def plot_frame(label=None): 57 57 pylab.close() 58 pylab. suptitle("fitting noisy 5th-order polynomial coefficients")58 pylab.title("fitting noisy 5th-order polynomial coefficients") 59 59 pylab.xlabel("x") 60 60 pylab.ylabel("f(x)")
Note: See TracChangeset
for help on using the changeset viewer.