Ejemplo n.º 1
0
 def testAmoebaFitter2(self):
     options = {"temp": 10.0, "maxiter": 10000, "verbose": 1}
     stdFittertest(AmoebaFitter,
                   201,
                   errdis='gauss',
                   plot=self.doplot,
                   options=options)
Ejemplo n.º 2
0
 def testAmoebaFitter2(self, plot=False):
     options = {"temp": 10.0, "maxiter": 10000, "verbose": 2}
     stdFittertest(AmoebaFitter,
                   201,
                   errdis='gauss',
                   plot=plot,
                   options=options)
     plt.show()
Ejemplo n.º 3
0
 def testNewtonCgFitter(self, plot=False):
     stdFittertest(NewtonCgFitter, 201, plot=plot)
Ejemplo n.º 4
0
 def testBfgsFitter(self, plot=False):
     stdFittertest(BfgsFitter, 201, plot=plot)
Ejemplo n.º 5
0
 def testTrustNcgFitter(self):
     stdFittertest(TrustNcgFitter, 201, plot=self.doplot)
Ejemplo n.º 6
0
 def testNelderMeadFitter(self, plot=False):
     stdFittertest(NelderMeadFitter,
                   201,
                   plot=plot,
                   options={"maxiter": 3000})
Ejemplo n.º 7
0
 def testAmoebaFitter(self, plot=False):
     options = {"temp": 10.0, "maxiter": 10000}
     options = {"maxiter": 10000}
     stdFittertest(AmoebaFitter, 201, plot=plot, options=options)
Ejemplo n.º 8
0
 def testDoglegFitter(self, plot=False):
     stdFittertest(DoglegFitter, 201, plot=plot)
Ejemplo n.º 9
0
 def testCobylaFitter(self, plot=False):
     stdFittertest(CobylaFitter, 201, plot=plot)
Ejemplo n.º 10
0
 def testNewtonCgFitter(self):
     stdFittertest(NewtonCgFitter, 201, plot=self.doplot)
Ejemplo n.º 11
0
 def testBfgsFitter(self):
     stdFittertest(BfgsFitter, 201, plot=self.doplot)
Ejemplo n.º 12
0
 def testConjugateGradientFitter(self):
     stdFittertest(ConjugateGradientFitter, 201, plot=self.doplot)
Ejemplo n.º 13
0
 def testPowellFitter(self):
     stdFittertest(PowellFitter, 201, plot=self.doplot)
Ejemplo n.º 14
0
 def testNelderMeadFitter(self):
     stdFittertest(NelderMeadFitter,
                   201,
                   plot=self.doplot,
                   options={"maxiter": 3000})
Ejemplo n.º 15
0
 def testLbfgsbFitter(self, plot=False):
     stdFittertest(LbfgsbFitter, 201, plot=plot)
Ejemplo n.º 16
0
 def testTncFitter(self, plot=False):
     stdFittertest(TncFitter, 201, plot=plot)
Ejemplo n.º 17
0
 def testLbfgsbFitter(self):
     stdFittertest(LbfgsbFitter, 201, plot=self.doplot)
Ejemplo n.º 18
0
 def testSlsqpFitter(self, plot=False):
     stdFittertest(SlsqpFitter, 201, plot=plot)
Ejemplo n.º 19
0
 def testTncFitter(self):
     stdFittertest(TncFitter, 201, plot=self.doplot)
Ejemplo n.º 20
0
 def testTrustNcgFitter(self, plot=False):
     stdFittertest(TrustNcgFitter, 201, plot=plot)
Ejemplo n.º 21
0
 def testCobylaFitter(self):
     stdFittertest(CobylaFitter, 201, plot=self.doplot)
Ejemplo n.º 22
0
 def testSlsqpFitter(self):
     stdFittertest(SlsqpFitter, 201, plot=self.doplot)
Ejemplo n.º 23
0
 def testConjugateGradientFitter(self, plot=False):
     stdFittertest(ConjugateGradientFitter, 201, plot=plot)
Ejemplo n.º 24
0
 def testPowellFitter(self, plot=False):
     stdFittertest(PowellFitter, 201, plot=plot)
Ejemplo n.º 25
0
 def testDoglegFitter(self):
     stdFittertest(DoglegFitter, 201, plot=self.doplot)