Changeset 126
- Timestamp:
- 03/26/09 11:10:43 (7 years ago)
- Location:
- mystic
- Files:
-
- 12 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
mystic/README
r113 r126 2 2 3 3 Dependencies: 4 - All examples with prefix "example" should run without new dependencies, and are intended as a tutorial. (i.e. TRY THESE FIRST) 4 5 - All examples with prefix "test_" should run without new dependencies. 5 6 - All examples with prefix "scipy_" requires scipy to be installed. (tested on version 0.4.8). -
mystic/examples/Make.mm
r113 r126 74 74 rosetta_parabola_example.py \ 75 75 rosetta_mogi_example.py \ 76 example01.py \ 77 example02.py \ 78 example03.py \ 79 example04.py \ 80 example05.py \ 81 example06.py \ 82 example07.py \ 83 example08.py \ 84 example09.py \ 85 example10.py \ 86 example11.py \ 87 example12.py \ 76 88 77 89 -
mystic/mystic/forward_model.py
r124 r126 68 68 self._inputCheckers.append(inputChecker) 69 69 70 #XXX: addModelNew is a work in progress... 71 ''' 70 72 def addModelNew(self, model, name, outputFilter = Identity, inputChecker = NullChecker): 71 73 """ … … 87 89 self._outputFilters.append(outputFilter) 88 90 self._inputCheckers.append(inputChecker) 91 ''' 89 92 90 93 def getForwardEvaluator(self, evalpts): -
mystic/mystic/tools.py
r124 r126 170 170 print "Generation %d has best Chi-Squared: %f" % (self._step, y) 171 171 if int(self._step % self._xinterval) == 0: 172 print "Generation %d has be t fit parameters:%s" % (self._step, x)172 print "Generation %d has best fit parameters:\n %s" % (self._step, x) 173 173 return 174 174 pass
Note: See TracChangeset
for help on using the changeset viewer.