Changeset 97d69d9 in sasview
- Timestamp:
- Oct 25, 2009 10:00:24 AM (15 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 4cabee7
- Parents:
- 75d6342
- Location:
- pr_inversion
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
pr_inversion/__init__.py
rffca8f2 r97d69d9 39 39 # 40 40 # \subsection depends External Dependencies 41 # scipy, numpy , pylab41 # scipy, numpy 42 42 # 43 43 # \subsection build Building the code -
pr_inversion/invertor.py
r75925e0 r97d69d9 7 7 import sys 8 8 import math, time 9 from scipy.linalg.basicimport lstsq9 from numpy.linalg import lstsq 10 10 11 11 def help(): … … 554 554 @param npts: number of P(r) points to be written 555 555 """ 556 import pylab557 558 556 file = open(path, 'w') 559 557 file.write("#d_max=%g\n" % self.d_max) … … 577 575 file.write("#C_%i=%s+-%s\n" % (i, str(self.out[i]), str(self.cov[i][i]))) 578 576 file.write("<r> <Pr> <dPr>\n") 579 r = pylab.arange(0.0, self.d_max, self.d_max/npts)577 r = numpy.arange(0.0, self.d_max, self.d_max/npts) 580 578 581 579 for r_i in r: -
pr_inversion/num_term.py
r7578961 r97d69d9 1 import unittest, math, numpy, pylab,sys, string1 import unittest, math, numpy, sys, string 2 2 from sans.pr.invertor import Invertor 3 3 -
pr_inversion/test/utest_invertor.py
rf168d02 r97d69d9 8 8 9 9 10 import unittest, math, numpy , pylab10 import unittest, math, numpy 11 11 from sans.pr.invertor import Invertor 12 12 … … 206 206 # Check the computed P(r) with the theory 207 207 # for shpere of radius 80 208 x = pylab.arange(0.01, self.invertor.d_max, self.invertor.d_max/51.0)208 x = numpy.arange(0.01, self.invertor.d_max, self.invertor.d_max/51.0) 209 209 y = numpy.zeros(len(x)) 210 210 dy = numpy.zeros(len(x)) … … 268 268 # Check the computed P(r) with the theory 269 269 # for shpere of radius 80 270 x = pylab.arange(0.01, self.invertor.d_max, self.invertor.d_max/51.0)270 x = numpy.arange(0.01, self.invertor.d_max, self.invertor.d_max/51.0) 271 271 y = numpy.zeros(len(x)) 272 272 dy = numpy.zeros(len(x))
Note: See TracChangeset
for help on using the changeset viewer.