Changeset 8884996 in sasview
- Timestamp:
- Oct 24, 2011 1:46:34 PM (13 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:
- a4f04f2
- Parents:
- f696e2a
- Location:
- pr_inversion/docs/sphinx
- Files:
-
- 15 added
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
pr_inversion/docs/sphinx/api/distance_explorer.rst
rd84a90c r8884996 13 13 :inherited-members: 14 14 :show-inheritance: 15 :special-members: 16 :private-members: 15 17 -
pr_inversion/docs/sphinx/api/invertor.rst
rd84a90c r8884996 13 13 :inherited-members: 14 14 :show-inheritance: 15 :special-members: 16 :private-members: 15 17 -
pr_inversion/docs/sphinx/api/num_term.rst
rd84a90c r8884996 13 13 :inherited-members: 14 14 :show-inheritance: 15 :special-members: 16 :private-members: 15 17 -
pr_inversion/docs/sphinx/genmods.py
rd84a90c r8884996 16 16 :inherited-members: 17 17 :show-inheritance: 18 :special-members: 19 :private-members: 18 20 19 21 """ … … 50 52 with open(os.path.join(dir,'index.rst'),'w') as f: 51 53 f.write(INDEX_TEMPLATE%locals()) 54 55 modules = [] 56 path = os.path.dirname(os.path.join('..', '..', 'pr_inversion')) 57 path = os.path.join(path, 'src', 'sans', 'pr') 58 list = os.listdir(path) 52 59 53 54 modules=[ 55 ('distance_explorer', 'distance_explorer'), 56 ('invertor', 'invertor'), 57 ('num_term', 'num_term'), 58 ] 60 for item in list: 61 toks = os.path.splitext(os.path.basename(item)) 62 if toks[1]=='.py' and toks[0] not in ["__init__"]: 63 exec "module = ('%s', '%s')"%(toks[0], toks[0]) 64 modules.append(module) 59 65 package ='sans.pr' 60 66 package_name ='Reference' -
pr_inversion/docs/sphinx/html/.buildinfo
ra7c772e r8884996 1 1 # Sphinx build info version 1 2 2 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 config: e33fcce3b78882edfe8ac6abaae088783 config: 7c9c66029a79c99968c5679f985dea3c 4 4 tags: fbb0d17656682115ca4d033fb2f83ba1 -
pr_inversion/docs/sphinx/html/_sources/api/distance_explorer.txt
ra7c772e r8884996 13 13 :inherited-members: 14 14 :show-inheritance: 15 :special-members: 16 :private-members: 15 17 -
pr_inversion/docs/sphinx/html/_sources/api/invertor.txt
ra7c772e r8884996 13 13 :inherited-members: 14 14 :show-inheritance: 15 :special-members: 16 :private-members: 15 17 -
pr_inversion/docs/sphinx/html/_sources/api/num_term.txt
ra7c772e r8884996 13 13 :inherited-members: 14 14 :show-inheritance: 15 :special-members: 16 :private-members: 15 17 -
pr_inversion/docs/sphinx/html/_static/basic.css
ra7c772e r8884996 80 80 } 81 81 82 div.sphinxsidebar input[type="text"] { 83 width: 170px; 84 } 85 86 div.sphinxsidebar input[type="submit"] { 87 width: 30px; 88 } 89 82 90 img { 83 91 border: 0; … … 237 245 238 246 .align-center { 239 clear: both;240 247 text-align: center; 241 248 } … … 441 448 } 442 449 450 abbr, acronym { 451 border-bottom: dotted 1px; 452 cursor: help; 453 } 454 443 455 /* -- code displays --------------------------------------------------------- */ 444 456 -
pr_inversion/docs/sphinx/html/_static/doctools.js
ra7c772e r8884996 186 186 }); 187 187 }, 10); 188 $('< liclass="highlight-link"><a href="javascript:Documentation.' +189 'hideSearchWords()">' + _('Hide Search Matches') + '</a></ li>')190 .appendTo($(' .sidebar .this-page-menu'));188 $('<p class="highlight-link"><a href="javascript:Documentation.' + 189 'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>') 190 .appendTo($('#searchbox')); 191 191 } 192 192 }, … … 214 214 */ 215 215 hideSearchWords : function() { 216 $(' .sidebar .this-page-menu li.highlight-link').fadeOut(300);216 $('#searchbox .highlight-link').fadeOut(300); 217 217 $('span.highlighted').removeClass('highlighted'); 218 218 }, -
pr_inversion/docs/sphinx/html/_static/searchtools.js
ra7c772e r8884996 1 1 /* 2 * searchtools.js 3 * ~~~~~~~~~~~~~~ 2 * searchtools.js_t 3 * ~~~~~~~~~~~~~~~~ 4 4 * 5 5 * Sphinx JavaScript utilties for the full-text search. … … 37 37 } 38 38 39 39 40 /** 40 41 * Porter Stemmer 41 42 */ 42 var PorterStemmer = function() {43 var Stemmer = function() { 43 44 44 45 var step2list = { … … 301 302 302 303 query : function(query) { 303 var stopwords = ['and', 'then', 'into', 'it', 'as', 'are', 'in', 304 'if', 'for', 'no', 'there', 'their', 'was', 'is', 305 'be', 'to', 'that', 'but', 'they', 'not', 'such', 306 'with', 'by', 'a', 'on', 'these', 'of', 'will', 307 'this', 'near', 'the', 'or', 'at']; 308 309 // stem the searchterms and add them to the correct list 310 var stemmer = new PorterStemmer(); 304 var stopwords = ["and","then","into","it","as","are","in","if","for","no","there","their","was","is","be","to","that","but","they","not","such","with","by","a","on","these","of","will","this","near","the","or","at"]; 305 306 // Stem the searchterms and add them to the correct list 307 var stemmer = new Stemmer(); 311 308 var searchterms = []; 312 309 var excluded = []; 313 310 var hlterms = []; 314 311 var tmp = query.split(/\s+/); 315 var object = (tmp.length == 1) ? tmp[0].toLowerCase() : null;312 var objectterms = []; 316 313 for (var i = 0; i < tmp.length; i++) { 314 if (tmp[i] != "") { 315 objectterms.push(tmp[i].toLowerCase()); 316 } 317 317 318 if ($u.indexOf(stopwords, tmp[i]) != -1 || tmp[i].match(/^\d+$/) || 318 319 tmp[i] == "") { … … 345 346 var titles = this._index.titles; 346 347 var terms = this._index.terms; 347 var objects = this._index.objects;348 var objtypes = this._index.objtypes;349 var objnames = this._index.objnames;350 348 var fileMap = {}; 351 349 var files = null; … … 358 356 359 357 // lookup as object 360 if (object != null) { 361 for (var prefix in objects) { 362 for (var name in objects[prefix]) { 363 var fullname = (prefix ? prefix + '.' : '') + name; 364 if (fullname.toLowerCase().indexOf(object) > -1) { 365 match = objects[prefix][name]; 366 descr = objnames[match[1]] + _(', in ') + titles[match[0]]; 367 // XXX the generated anchors are not generally correct 368 // XXX there may be custom prefixes 369 result = [filenames[match[0]], fullname, '#'+fullname, descr]; 370 switch (match[2]) { 371 case 1: objectResults.push(result); break; 372 case 0: importantResults.push(result); break; 373 case 2: unimportantResults.push(result); break; 374 } 375 } 376 } 377 } 378 } 379 380 // sort results descending 381 objectResults.sort(function(a, b) { 382 return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); 383 }); 384 385 importantResults.sort(function(a, b) { 386 return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); 387 }); 388 389 unimportantResults.sort(function(a, b) { 390 return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); 391 }); 392 358 for (var i = 0; i < objectterms.length; i++) { 359 var others = [].concat(objectterms.slice(0,i), 360 objectterms.slice(i+1, objectterms.length)) 361 var results = this.performObjectSearch(objectterms[i], others); 362 // Assume first word is most likely to be the object, 363 // other words more likely to be in description. 364 // Therefore put matches for earlier words first. 365 // (Results are eventually used in reverse order). 366 objectResults = results[0].concat(objectResults); 367 importantResults = results[1].concat(importantResults); 368 unimportantResults = results[2].concat(unimportantResults); 369 } 393 370 394 371 // perform the search on the required terms … … 490 467 displayNextItem(); 491 468 }); 492 } );469 }, "text"); 493 470 } else { 494 471 // no source available, just display title … … 511 488 } 512 489 displayNextItem(); 490 }, 491 492 performObjectSearch : function(object, otherterms) { 493 var filenames = this._index.filenames; 494 var objects = this._index.objects; 495 var objnames = this._index.objnames; 496 var titles = this._index.titles; 497 498 var importantResults = []; 499 var objectResults = []; 500 var unimportantResults = []; 501 502 for (var prefix in objects) { 503 for (var name in objects[prefix]) { 504 var fullname = (prefix ? prefix + '.' : '') + name; 505 if (fullname.toLowerCase().indexOf(object) > -1) { 506 var match = objects[prefix][name]; 507 var objname = objnames[match[1]][2]; 508 var title = titles[match[0]]; 509 // If more than one term searched for, we require other words to be 510 // found in the name/title/description 511 if (otherterms.length > 0) { 512 var haystack = (prefix + ' ' + name + ' ' + 513 objname + ' ' + title).toLowerCase(); 514 var allfound = true; 515 for (var i = 0; i < otherterms.length; i++) { 516 if (haystack.indexOf(otherterms[i]) == -1) { 517 allfound = false; 518 break; 519 } 520 } 521 if (!allfound) { 522 continue; 523 } 524 } 525 var descr = objname + _(', in ') + title; 526 anchor = match[3]; 527 if (anchor == '') 528 anchor = fullname; 529 else if (anchor == '-') 530 anchor = objnames[match[1]][1] + '-' + fullname; 531 result = [filenames[match[0]], fullname, '#'+anchor, descr]; 532 switch (match[2]) { 533 case 1: objectResults.push(result); break; 534 case 0: importantResults.push(result); break; 535 case 2: unimportantResults.push(result); break; 536 } 537 } 538 } 539 } 540 541 // sort results descending 542 objectResults.sort(function(a, b) { 543 return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); 544 }); 545 546 importantResults.sort(function(a, b) { 547 return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); 548 }); 549 550 unimportantResults.sort(function(a, b) { 551 return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); 552 }); 553 554 return [importantResults, objectResults, unimportantResults] 513 555 } 514 556 } -
pr_inversion/docs/sphinx/html/_static/sidebar.js
ra7c772e r8884996 29 29 var sidebar = $('.sphinxsidebar'); 30 30 var sidebarwrapper = $('.sphinxsidebarwrapper'); 31 32 // for some reason, the document has no sidebar; do not run into errors 33 if (!sidebar.length) return; 31 34 32 35 // original margin-left of the bodywrapper and width of the sidebar -
pr_inversion/docs/sphinx/html/_static/underscore.js
ra7c772e r8884996 1 // Underscore.js 0.5.5 2 // (c) 2009 Jeremy Ashkenas, DocumentCloud Inc. 3 // Underscore is freely distributable under the terms of the MIT license. 4 // Portions of Underscore are inspired by or borrowed from Prototype.js, 5 // Oliver Steele's Functional, and John Resig's Micro-Templating. 6 // For all details and documentation: 7 // http://documentcloud.github.com/underscore/ 1 8 (function(){var j=this,n=j._,i=function(a){this._wrapped=a},m=typeof StopIteration!=="undefined"?StopIteration:"__break__",b=j._=function(a){return new i(a)};if(typeof exports!=="undefined")exports._=b;var k=Array.prototype.slice,o=Array.prototype.unshift,p=Object.prototype.toString,q=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;b.VERSION="0.5.5";b.each=function(a,c,d){try{if(a.forEach)a.forEach(c,d);else if(b.isArray(a)||b.isArguments(a))for(var e=0,f=a.length;e<f;e++)c.call(d, 2 9 a[e],e,a);else{var g=b.keys(a);f=g.length;for(e=0;e<f;e++)c.call(d,a[g[e]],g[e],a)}}catch(h){if(h!=m)throw h;}return a};b.map=function(a,c,d){if(a&&b.isFunction(a.map))return a.map(c,d);var e=[];b.each(a,function(f,g,h){e.push(c.call(d,f,g,h))});return e};b.reduce=function(a,c,d,e){if(a&&b.isFunction(a.reduce))return a.reduce(b.bind(d,e),c);b.each(a,function(f,g,h){c=d.call(e,c,f,g,h)});return c};b.reduceRight=function(a,c,d,e){if(a&&b.isFunction(a.reduceRight))return a.reduceRight(b.bind(d,e),c); -
pr_inversion/docs/sphinx/html/api/distance_explorer.html
ra7c772e r8884996 3 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 4 4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5 5 6 6 7 <html xmlns="http://www.w3.org/1999/xhtml"> … … 8 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 9 10 10 <title>distance_explorer — pr_inversion v0.1.0 documentation</title> 11 <title>distance_explorer — pr_inversion 0.1.0 documentation</title> 12 11 13 <link rel="stylesheet" href="../_static/default.css" type="text/css" /> 12 14 <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> 15 13 16 <script type="text/javascript"> 14 17 var DOCUMENTATION_OPTIONS = { … … 23 26 <script type="text/javascript" src="../_static/underscore.js"></script> 24 27 <script type="text/javascript" src="../_static/doctools.js"></script> 25 <link rel="top" title="pr_inversion v0.1.0 documentation" href="../index.html" />28 <link rel="top" title="pr_inversion 0.1.0 documentation" href="../index.html" /> 26 29 <link rel="up" title="Reference" href="index.html" /> 27 30 <link rel="next" title="invertor" href="invertor.html" /> … … 44 47 <a href="index.html" title="Reference" 45 48 accesskey="P">previous</a> |</li> 46 <li><a href="../index.html">pr_inversion v0.1.0 documentation</a> »</li>49 <li><a href="../index.html">pr_inversion 0.1.0 documentation</a> »</li> 47 50 <li><a href="index.html" accesskey="U">Reference</a> »</li> 48 51 </ul> … … 56 59 <div class="section" id="distance-explorer"> 57 60 <h1>distance_explorer<a class="headerlink" href="#distance-explorer" title="Permalink to this headline">¶</a></h1> 58 <div class="section" id=" module-sans.pr.distance_explorer">59 < span id="sans-pr-distance-explorer"></span><h2><a class="reference internal" href="#module-sans.pr.distance_explorer" title="sans.pr.distance_explorer"><tt class="xref py py-mod docutils literal"><span class="pre">sans.pr.distance_explorer</span></tt></a><a class="headerlink" href="#module-sans.pr.distance_explorer" title="Permalink to this headline">¶</a></h2>60 < p>Module to explore the P(r) inversion results for a range61 <div class="section" id="sans-pr-distance-explorer"> 62 <h2><a class="reference internal" href="#module-sans.pr.distance_explorer" title="sans.pr.distance_explorer"><tt class="xref py py-mod docutils literal"><span class="pre">sans.pr.distance_explorer</span></tt></a><a class="headerlink" href="#sans-pr-distance-explorer" title="Permalink to this headline">¶</a></h2> 63 <span class="target" id="module-sans.pr.distance_explorer"></span><p>Module to explore the P(r) inversion results for a range 61 64 of D_max value. User picks a number of points and a range of 62 65 distances, then get a series of outputs as a function of D_max … … 64 67 <dl class="class"> 65 68 <dt id="sans.pr.distance_explorer.DistExplorer"> 66 <em class="property">class </em><tt class="descclassname">sans.pr.distance_explorer.</tt><tt class="descname">DistExplorer</tt>< big>(</big><em>pr_state</em><big>)</big><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer" title="Permalink to this definition">¶</a></dt>69 <em class="property">class </em><tt class="descclassname">sans.pr.distance_explorer.</tt><tt class="descname">DistExplorer</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer" title="Permalink to this definition">¶</a></dt> 67 70 <dd><p>Bases: <tt class="xref py py-class docutils literal"><span class="pre">object</span></tt></p> 68 71 <p>The explorer class</p> 72 <dl class="method"> 73 <dt id="sans.pr.distance_explorer.DistExplorer.__call__"> 74 <tt class="descname">__call__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__call__" title="Permalink to this definition">¶</a></dt> 75 <dd><p>Compute the outputs as a function of D_max.</p> 76 <table class="docutils field-list" frame="void" rules="none"> 77 <col class="field-name" /> 78 <col class="field-body" /> 79 <tbody valign="top"> 80 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> 81 <li><strong>dmin</strong> – minimum value for D_max</li> 82 <li><strong>dmax</strong> – maximum value for D_max</li> 83 <li><strong>npts</strong> – number of points for D_max</li> 84 </ul> 85 </td> 86 </tr> 87 </tbody> 88 </table> 89 </dd></dl> 90 91 <dl class="attribute"> 92 <dt id="sans.pr.distance_explorer.DistExplorer.__class__"> 93 <tt class="descname">__class__</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__class__" title="Permalink to this definition">¶</a></dt> 94 <dd><p>alias of <tt class="xref py py-class docutils literal"><span class="pre">type</span></tt></p> 95 </dd></dl> 96 97 <dl class="attribute"> 98 <dt id="sans.pr.distance_explorer.DistExplorer.__delattr__"> 99 <tt class="descname">__delattr__</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__delattr__" title="Permalink to this definition">¶</a></dt> 100 <dd><p>x.__delattr__(‘name’) <==> del x.name</p> 101 </dd></dl> 102 103 <dl class="attribute"> 104 <dt id="sans.pr.distance_explorer.DistExplorer.__dict__"> 105 <tt class="descname">__dict__</tt><em class="property"> = <dictproxy object at 0x018F9B90></em><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__dict__" title="Permalink to this definition">¶</a></dt> 106 <dd></dd></dl> 107 108 <dl class="attribute"> 109 <dt id="sans.pr.distance_explorer.DistExplorer.__getattribute__"> 110 <tt class="descname">__getattribute__</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__getattribute__" title="Permalink to this definition">¶</a></dt> 111 <dd><p>x.__getattribute__(‘name’) <==> x.name</p> 112 </dd></dl> 113 114 <dl class="attribute"> 115 <dt id="sans.pr.distance_explorer.DistExplorer.__hash__"> 116 <tt class="descname">__hash__</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__hash__" title="Permalink to this definition">¶</a></dt> 117 <dd><p>x.__hash__() <==> hash(x)</p> 118 </dd></dl> 119 120 <dl class="method"> 121 <dt id="sans.pr.distance_explorer.DistExplorer.__init__"> 122 <tt class="descname">__init__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__init__" title="Permalink to this definition">¶</a></dt> 123 <dd><p>Initialization.</p> 124 <table class="docutils field-list" frame="void" rules="none"> 125 <col class="field-name" /> 126 <col class="field-body" /> 127 <tbody valign="top"> 128 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>pr_state</strong> – sans.pr.invertor.Invertor object</td> 129 </tr> 130 </tbody> 131 </table> 132 </dd></dl> 133 134 <dl class="attribute"> 135 <dt id="sans.pr.distance_explorer.DistExplorer.__module__"> 136 <tt class="descname">__module__</tt><em class="property"> = 'sans.pr.distance_explorer'</em><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__module__" title="Permalink to this definition">¶</a></dt> 137 <dd></dd></dl> 138 139 <dl class="staticmethod"> 140 <dt id="sans.pr.distance_explorer.DistExplorer.__new__"> 141 <em class="property">static </em><tt class="descname">__new__</tt><big>(</big><em>S</em>, <em>...</em><big>)</big> → a new object with type S, a subtype of T<a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__new__" title="Permalink to this definition">¶</a></dt> 142 <dd></dd></dl> 143 144 <dl class="method"> 145 <dt id="sans.pr.distance_explorer.DistExplorer.__reduce__"> 146 <tt class="descname">__reduce__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__reduce__" title="Permalink to this definition">¶</a></dt> 147 <dd><p>helper for pickle</p> 148 </dd></dl> 149 150 <dl class="method"> 151 <dt id="sans.pr.distance_explorer.DistExplorer.__reduce_ex__"> 152 <tt class="descname">__reduce_ex__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__reduce_ex__" title="Permalink to this definition">¶</a></dt> 153 <dd><p>helper for pickle</p> 154 </dd></dl> 155 156 <dl class="attribute"> 157 <dt id="sans.pr.distance_explorer.DistExplorer.__repr__"> 158 <tt class="descname">__repr__</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__repr__" title="Permalink to this definition">¶</a></dt> 159 <dd><p>x.__repr__() <==> repr(x)</p> 160 </dd></dl> 161 162 <dl class="attribute"> 163 <dt id="sans.pr.distance_explorer.DistExplorer.__setattr__"> 164 <tt class="descname">__setattr__</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__setattr__" title="Permalink to this definition">¶</a></dt> 165 <dd><p>x.__setattr__(‘name’, value) <==> x.name = value</p> 166 </dd></dl> 167 168 <dl class="attribute"> 169 <dt id="sans.pr.distance_explorer.DistExplorer.__str__"> 170 <tt class="descname">__str__</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__str__" title="Permalink to this definition">¶</a></dt> 171 <dd><p>x.__str__() <==> str(x)</p> 172 </dd></dl> 173 174 <dl class="attribute"> 175 <dt id="sans.pr.distance_explorer.DistExplorer.__weakref__"> 176 <tt class="descname">__weakref__</tt><a class="headerlink" href="#sans.pr.distance_explorer.DistExplorer.__weakref__" title="Permalink to this definition">¶</a></dt> 177 <dd><p>list of weak references to the object (if defined)</p> 178 </dd></dl> 179 69 180 </dd></dl> 70 181 … … 74 185 <dd><p>Class to hold the inversion output parameters 75 186 as a function of D_max</p> 187 <dl class="method"> 188 <dt id="sans.pr.distance_explorer.Results.__init__"> 189 <tt class="descname">__init__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.distance_explorer.Results.__init__" title="Permalink to this definition">¶</a></dt> 190 <dd><p>Initialization. Create empty arrays 191 and dictionary of labels.</p> 192 </dd></dl> 193 194 <dl class="attribute"> 195 <dt id="sans.pr.distance_explorer.Results.__module__"> 196 <tt class="descname">__module__</tt><em class="property"> = 'sans.pr.distance_explorer'</em><a class="headerlink" href="#sans.pr.distance_explorer.Results.__module__" title="Permalink to this definition">¶</a></dt> 197 <dd></dd></dl> 198 76 199 </dd></dl> 77 200 … … 88 211 <ul> 89 212 <li><a class="reference internal" href="#">distance_explorer</a><ul> 90 <li><a class="reference internal" href="# module-sans.pr.distance_explorer"><tt class="docutils literal"><span class="pre">sans.pr.distance_explorer</span></tt></a></li>213 <li><a class="reference internal" href="#sans-pr-distance-explorer"><tt class="docutils literal"><span class="pre">sans.pr.distance_explorer</span></tt></a></li> 91 214 </ul> 92 215 </li> … … 107 230 <h3>Quick search</h3> 108 231 <form class="search" action="../search.html" method="get"> 109 <input type="text" name="q" size="18"/>232 <input type="text" name="q" /> 110 233 <input type="submit" value="Go" /> 111 234 <input type="hidden" name="check_keywords" value="yes" /> … … 136 259 <a href="index.html" title="Reference" 137 260 >previous</a> |</li> 138 <li><a href="../index.html">pr_inversion v0.1.0 documentation</a> »</li>261 <li><a href="../index.html">pr_inversion 0.1.0 documentation</a> »</li> 139 262 <li><a href="index.html" >Reference</a> »</li> 140 263 </ul> … … 142 265 <div class="footer"> 143 266 © Copyright 2010, sans group. 144 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1. 0.7.267 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1. 145 268 </div> 146 269 </body> -
pr_inversion/docs/sphinx/html/api/index.html
ra7c772e r8884996 4 4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5 5 6 6 7 <html xmlns="http://www.w3.org/1999/xhtml"> 7 8 <head> 8 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 9 10 10 <title>Reference — pr_inversion v0.1.0 documentation</title> 11 <title>Reference — pr_inversion 0.1.0 documentation</title> 12 11 13 <link rel="stylesheet" href="../_static/default.css" type="text/css" /> 12 14 <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> 15 13 16 <script type="text/javascript"> 14 17 var DOCUMENTATION_OPTIONS = { … … 23 26 <script type="text/javascript" src="../_static/underscore.js"></script> 24 27 <script type="text/javascript" src="../_static/doctools.js"></script> 25 <link rel="top" title="pr_inversion v0.1.0 documentation" href="../index.html" />28 <link rel="top" title="pr_inversion 0.1.0 documentation" href="../index.html" /> 26 29 <link rel="next" title="distance_explorer" href="distance_explorer.html" /> 27 30 <link rel="prev" title="Welcome to pr_inversionâs documentation!" href="../index.html" /> … … 43 46 <a href="../index.html" title="Welcome to pr_inversionâs documentation!" 44 47 accesskey="P">previous</a> |</li> 45 <li><a href="../index.html">pr_inversion v0.1.0 documentation</a> »</li>48 <li><a href="../index.html">pr_inversion 0.1.0 documentation</a> »</li> 46 49 </ul> 47 50 </div> … … 58 61 <col class="field-body" /> 59 62 <tbody valign="top"> 60 <tr class="field "><th class="field-name">Release:</th><td class="field-body">0.1</td>63 <tr class="field-odd field"><th class="field-name">Release:</th><td class="field-body">0.1</td> 61 64 </tr> 62 <tr class="field "><th class="field-name">Date:</th><td class="field-body">August 12, 2011</td>65 <tr class="field-even field"><th class="field-name">Date:</th><td class="field-body">October 24, 2011</td> 63 66 </tr> 64 67 </tbody> … … 67 70 <ul> 68 71 <li class="toctree-l1"><a class="reference internal" href="distance_explorer.html">distance_explorer</a><ul> 69 <li class="toctree-l2"><a class="reference internal" href="distance_explorer.html# module-sans.pr.distance_explorer"><tt class="docutils literal"><span class="pre">sans.pr.distance_explorer</span></tt></a></li>72 <li class="toctree-l2"><a class="reference internal" href="distance_explorer.html#sans-pr-distance-explorer"><tt class="docutils literal"><span class="pre">sans.pr.distance_explorer</span></tt></a></li> 70 73 </ul> 71 74 </li> 72 75 <li class="toctree-l1"><a class="reference internal" href="invertor.html">invertor</a><ul> 73 <li class="toctree-l2"><a class="reference internal" href="invertor.html# module-sans.pr.invertor"><tt class="docutils literal"><span class="pre">sans.pr.invertor</span></tt></a></li>76 <li class="toctree-l2"><a class="reference internal" href="invertor.html#sans-pr-invertor"><tt class="docutils literal"><span class="pre">sans.pr.invertor</span></tt></a></li> 74 77 </ul> 75 78 </li> 76 79 <li class="toctree-l1"><a class="reference internal" href="num_term.html">num_term</a><ul> 77 <li class="toctree-l2"><a class="reference internal" href="num_term.html# module-sans.pr.num_term"><tt class="docutils literal"><span class="pre">sans.pr.num_term</span></tt></a></li>80 <li class="toctree-l2"><a class="reference internal" href="num_term.html#sans-pr-num-term"><tt class="docutils literal"><span class="pre">sans.pr.num_term</span></tt></a></li> 78 81 </ul> 79 82 </li> … … 102 105 <h3>Quick search</h3> 103 106 <form class="search" action="../search.html" method="get"> 104 <input type="text" name="q" size="18"/>107 <input type="text" name="q" /> 105 108 <input type="submit" value="Go" /> 106 109 <input type="hidden" name="check_keywords" value="yes" /> … … 131 134 <a href="../index.html" title="Welcome to pr_inversionâs documentation!" 132 135 >previous</a> |</li> 133 <li><a href="../index.html">pr_inversion v0.1.0 documentation</a> »</li>136 <li><a href="../index.html">pr_inversion 0.1.0 documentation</a> »</li> 134 137 </ul> 135 138 </div> 136 139 <div class="footer"> 137 140 © Copyright 2010, sans group. 138 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1. 0.7.141 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1. 139 142 </div> 140 143 </body> -
pr_inversion/docs/sphinx/html/api/invertor.html
ra7c772e r8884996 3 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 4 4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5 5 6 6 7 <html xmlns="http://www.w3.org/1999/xhtml"> … … 8 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 9 10 10 <title>invertor — pr_inversion v0.1.0 documentation</title> 11 <title>invertor — pr_inversion 0.1.0 documentation</title> 12 11 13 <link rel="stylesheet" href="../_static/default.css" type="text/css" /> 12 14 <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> 15 13 16 <script type="text/javascript"> 14 17 var DOCUMENTATION_OPTIONS = { … … 23 26 <script type="text/javascript" src="../_static/underscore.js"></script> 24 27 <script type="text/javascript" src="../_static/doctools.js"></script> 25 <link rel="top" title="pr_inversion v0.1.0 documentation" href="../index.html" />28 <link rel="top" title="pr_inversion 0.1.0 documentation" href="../index.html" /> 26 29 <link rel="up" title="Reference" href="index.html" /> 27 30 <link rel="next" title="num_term" href="num_term.html" /> … … 44 47 <a href="distance_explorer.html" title="distance_explorer" 45 48 accesskey="P">previous</a> |</li> 46 <li><a href="../index.html">pr_inversion v0.1.0 documentation</a> »</li>49 <li><a href="../index.html">pr_inversion 0.1.0 documentation</a> »</li> 47 50 <li><a href="index.html" accesskey="U">Reference</a> »</li> 48 51 </ul> … … 56 59 <div class="section" id="invertor"> 57 60 <h1>invertor<a class="headerlink" href="#invertor" title="Permalink to this headline">¶</a></h1> 58 <div class="section" id=" module-sans.pr.invertor">59 < span id="sans-pr-invertor"></span><h2><a class="reference internal" href="#module-sans.pr.invertor" title="sans.pr.invertor"><tt class="xref py py-mod docutils literal"><span class="pre">sans.pr.invertor</span></tt></a><a class="headerlink" href="#module-sans.pr.invertor" title="Permalink to this headline">¶</a></h2>60 < p>Module to perform P(r) inversion.61 <div class="section" id="sans-pr-invertor"> 62 <h2><a class="reference internal" href="#module-sans.pr.invertor" title="sans.pr.invertor"><tt class="xref py py-mod docutils literal"><span class="pre">sans.pr.invertor</span></tt></a><a class="headerlink" href="#sans-pr-invertor" title="Permalink to this headline">¶</a></h2> 63 <span class="target" id="module-sans.pr.invertor"></span><p>Module to perform P(r) inversion. 61 64 The module contains the Invertor class.</p> 62 65 <dl class="class"> … … 91 94 - get_pos_err(pars): returns the fraction of P(r) that is 1-sigma above zero</p> 92 95 <dl class="attribute"> 96 <dt id="sans.pr.invertor.Invertor.__class__"> 97 <tt class="descname">__class__</tt><a class="headerlink" href="#sans.pr.invertor.Invertor.__class__" title="Permalink to this definition">¶</a></dt> 98 <dd><p>alias of <tt class="xref py py-class docutils literal"><span class="pre">type</span></tt></p> 99 </dd></dl> 100 101 <dl class="attribute"> 102 <dt id="sans.pr.invertor.Invertor.__delattr__"> 103 <tt class="descname">__delattr__</tt><a class="headerlink" href="#sans.pr.invertor.Invertor.__delattr__" title="Permalink to this definition">¶</a></dt> 104 <dd><p>x.__delattr__(‘name’) <==> del x.name</p> 105 </dd></dl> 106 107 <dl class="attribute"> 108 <dt id="sans.pr.invertor.Invertor.__dict__"> 109 <tt class="descname">__dict__</tt><em class="property"> = <dictproxy object at 0x01CA22F0></em><a class="headerlink" href="#sans.pr.invertor.Invertor.__dict__" title="Permalink to this definition">¶</a></dt> 110 <dd></dd></dl> 111 112 <dl class="method"> 113 <dt id="sans.pr.invertor.Invertor.__getattr__"> 114 <tt class="descname">__getattr__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.__getattr__" title="Permalink to this definition">¶</a></dt> 115 <dd><p>Return the value of an attribute</p> 116 </dd></dl> 117 118 <dl class="attribute"> 119 <dt id="sans.pr.invertor.Invertor.__getattribute__"> 120 <tt class="descname">__getattribute__</tt><a class="headerlink" href="#sans.pr.invertor.Invertor.__getattribute__" title="Permalink to this definition">¶</a></dt> 121 <dd><p>x.__getattribute__(‘name’) <==> x.name</p> 122 </dd></dl> 123 124 <dl class="attribute"> 125 <dt id="sans.pr.invertor.Invertor.__hash__"> 126 <tt class="descname">__hash__</tt><a class="headerlink" href="#sans.pr.invertor.Invertor.__hash__" title="Permalink to this definition">¶</a></dt> 127 <dd><p>x.__hash__() <==> hash(x)</p> 128 </dd></dl> 129 130 <dl class="method"> 131 <dt id="sans.pr.invertor.Invertor.__init__"> 132 <tt class="descname">__init__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.__init__" title="Permalink to this definition">¶</a></dt> 133 <dd></dd></dl> 134 135 <dl class="attribute"> 136 <dt id="sans.pr.invertor.Invertor.__module__"> 137 <tt class="descname">__module__</tt><em class="property"> = 'sans.pr.invertor'</em><a class="headerlink" href="#sans.pr.invertor.Invertor.__module__" title="Permalink to this definition">¶</a></dt> 138 <dd></dd></dl> 139 140 <dl class="staticmethod"> 141 <dt id="sans.pr.invertor.Invertor.__new__"> 142 <em class="property">static </em><tt class="descname">__new__</tt><big>(</big><em>S</em>, <em>...</em><big>)</big> → a new object with type S, a subtype of T<a class="headerlink" href="#sans.pr.invertor.Invertor.__new__" title="Permalink to this definition">¶</a></dt> 143 <dd></dd></dl> 144 145 <dl class="method"> 146 <dt id="sans.pr.invertor.Invertor.__reduce__"> 147 <tt class="descname">__reduce__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.__reduce__" title="Permalink to this definition">¶</a></dt> 148 <dd><p>helper for pickle</p> 149 </dd></dl> 150 151 <dl class="method"> 152 <dt id="sans.pr.invertor.Invertor.__reduce_ex__"> 153 <tt class="descname">__reduce_ex__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.__reduce_ex__" title="Permalink to this definition">¶</a></dt> 154 <dd><p>Overwrite the __reduce_ex__</p> 155 </dd></dl> 156 157 <dl class="attribute"> 158 <dt id="sans.pr.invertor.Invertor.__repr__"> 159 <tt class="descname">__repr__</tt><a class="headerlink" href="#sans.pr.invertor.Invertor.__repr__" title="Permalink to this definition">¶</a></dt> 160 <dd><p>x.__repr__() <==> repr(x)</p> 161 </dd></dl> 162 163 <dl class="method"> 164 <dt id="sans.pr.invertor.Invertor.__setattr__"> 165 <tt class="descname">__setattr__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.__setattr__" title="Permalink to this definition">¶</a></dt> 166 <dd><p>Set the value of an attribute. 167 Access the parent class methods for 168 x, y, err, d_max, q_min, q_max and alpha</p> 169 </dd></dl> 170 171 <dl class="method"> 172 <dt id="sans.pr.invertor.Invertor.__setstate__"> 173 <tt class="descname">__setstate__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.__setstate__" title="Permalink to this definition">¶</a></dt> 174 <dd><p>restore the state of invertor for pickle</p> 175 </dd></dl> 176 177 <dl class="attribute"> 178 <dt id="sans.pr.invertor.Invertor.__str__"> 179 <tt class="descname">__str__</tt><a class="headerlink" href="#sans.pr.invertor.Invertor.__str__" title="Permalink to this definition">¶</a></dt> 180 <dd><p>x.__str__() <==> str(x)</p> 181 </dd></dl> 182 183 <dl class="attribute"> 184 <dt id="sans.pr.invertor.Invertor.__weakref__"> 185 <tt class="descname">__weakref__</tt><a class="headerlink" href="#sans.pr.invertor.Invertor.__weakref__" title="Permalink to this definition">¶</a></dt> 186 <dd><p>list of weak references to the object (if defined)</p> 187 </dd></dl> 188 189 <dl class="method"> 190 <dt id="sans.pr.invertor.Invertor._accept_q"> 191 <tt class="descname">_accept_q</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor._accept_q" title="Permalink to this definition">¶</a></dt> 192 <dd><p>Check q-value against user-defined range</p> 193 </dd></dl> 194 195 <dl class="method"> 196 <dt id="sans.pr.invertor.Invertor._get_invcov_matrix"> 197 <tt class="descname">_get_invcov_matrix</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor._get_invcov_matrix" title="Permalink to this definition">¶</a></dt> 198 <dd><p>Compute the inverse covariance matrix, defined as inv_cov = a_transposed x a. 199 @param nfunc: number of base functions 200 @param nr: number of r-points used when evaluating reg term. 201 @param a: A array to fill 202 @param inv_cov: inverse covariance array to be filled 203 @return: 0</p> 204 </dd></dl> 205 206 <dl class="method"> 207 <dt id="sans.pr.invertor.Invertor._get_matrix"> 208 <tt class="descname">_get_matrix</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor._get_matrix" title="Permalink to this definition">¶</a></dt> 209 <dd><p>Returns A matrix and b vector for least square problem. 210 @param nfunc: number of base functions 211 @param nr: number of r-points used when evaluating reg term. 212 @param a: A array to fill 213 @param b: b vector to fill 214 @return: 0</p> 215 </dd></dl> 216 217 <dl class="method"> 218 <dt id="sans.pr.invertor.Invertor._get_reg_size"> 219 <tt class="descname">_get_reg_size</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor._get_reg_size" title="Permalink to this definition">¶</a></dt> 220 <dd><p>Compute the covariance matrix, defined as inv_cov = a_transposed x a. 221 @param nfunc: number of base functions 222 @param nr: number of r-points used when evaluating reg term. 223 @param a: A array to fill 224 @param inv_cov: inverse covariance array to be filled 225 @return: 0</p> 226 </dd></dl> 227 228 <dl class="attribute"> 229 <dt id="sans.pr.invertor.Invertor.background"> 230 <tt class="descname">background</tt><em class="property"> = 0</em><a class="headerlink" href="#sans.pr.invertor.Invertor.background" title="Permalink to this definition">¶</a></dt> 231 <dd></dd></dl> 232 233 <dl class="method"> 93 234 <dt id="sans.pr.invertor.Invertor.basefunc_ft"> 94 <tt class="descname">basefunc_ft</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.basefunc_ft" title="Permalink to this definition">¶</a></dt>235 <tt class="descname">basefunc_ft</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.basefunc_ft" title="Permalink to this definition">¶</a></dt> 95 236 <dd><p>Returns the value of the nth Fourier transofrmed base function 96 237 @param args: c-parameters, n and q … … 98 239 </dd></dl> 99 240 241 <dl class="attribute"> 242 <dt id="sans.pr.invertor.Invertor.chi2"> 243 <tt class="descname">chi2</tt><em class="property"> = 0</em><a class="headerlink" href="#sans.pr.invertor.Invertor.chi2" title="Permalink to this definition">¶</a></dt> 244 <dd></dd></dl> 245 100 246 <dl class="method"> 101 247 <dt id="sans.pr.invertor.Invertor.clone"> … … 104 250 </dd></dl> 105 251 252 <dl class="attribute"> 253 <dt id="sans.pr.invertor.Invertor.cov"> 254 <tt class="descname">cov</tt><em class="property"> = None</em><a class="headerlink" href="#sans.pr.invertor.Invertor.cov" title="Permalink to this definition">¶</a></dt> 255 <dd></dd></dl> 256 257 <dl class="attribute"> 258 <dt id="sans.pr.invertor.Invertor.elapsed"> 259 <tt class="descname">elapsed</tt><em class="property"> = 0</em><a class="headerlink" href="#sans.pr.invertor.Invertor.elapsed" title="Permalink to this definition">¶</a></dt> 260 <dd></dd></dl> 261 106 262 <dl class="method"> 107 263 <dt id="sans.pr.invertor.Invertor.estimate_alpha"> 108 <tt class="descname">estimate_alpha</tt><big>(</big>< em>nfunc</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.estimate_alpha" title="Permalink to this definition">¶</a></dt>264 <tt class="descname">estimate_alpha</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.estimate_alpha" title="Permalink to this definition">¶</a></dt> 109 265 <dd><p>Returns a reasonable guess for the 110 266 regularization constant alpha</p> … … 113 269 <col class="field-body" /> 114 270 <tbody valign="top"> 115 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><strong>nfunc</strong> – number of terms to use in the expansion.</td>116 </tr> 117 <tr class="field "><th class="field-name">Returns:</th><td class="field-body">alpha, message, elapsed</td>271 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>nfunc</strong> – number of terms to use in the expansion.</td> 272 </tr> 273 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">alpha, message, elapsed</td> 118 274 </tr> 119 275 </tbody> … … 126 282 <dl class="method"> 127 283 <dt id="sans.pr.invertor.Invertor.estimate_numterms"> 128 <tt class="descname">estimate_numterms</tt><big>(</big>< em>isquit_func=None</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.estimate_numterms" title="Permalink to this definition">¶</a></dt>284 <tt class="descname">estimate_numterms</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.estimate_numterms" title="Permalink to this definition">¶</a></dt> 129 285 <dd><p>Returns a reasonable guess for the 130 286 number of terms</p> … … 133 289 <col class="field-body" /> 134 290 <tbody valign="top"> 135 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><strong>isquit_func</strong> – reference to thread function to call to291 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>isquit_func</strong> – reference to thread function to call to 136 292 check whether the computation needs to 137 293 be stopped.</td> 138 294 </tr> 139 <tr class="field "><th class="field-name">Returns:</th><td class="field-body">number of terms, alpha, message</td>295 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">number of terms, alpha, message</td> 140 296 </tr> 141 297 </tbody> … … 145 301 <dl class="method"> 146 302 <dt id="sans.pr.invertor.Invertor.from_file"> 147 <tt class="descname">from_file</tt><big>(</big>< em>path</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.from_file" title="Permalink to this definition">¶</a></dt>303 <tt class="descname">from_file</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.from_file" title="Permalink to this definition">¶</a></dt> 148 304 <dd><p>Load the state of the Invertor from a file, 149 305 to be able to generate P(r) from a set of … … 153 309 <col class="field-body" /> 154 310 <tbody valign="top"> 155 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><strong>path</strong> – path of the file to load</td>311 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>path</strong> – path of the file to load</td> 156 312 </tr> 157 313 </tbody> … … 159 315 </dd></dl> 160 316 161 <dl class=" attribute">317 <dl class="method"> 162 318 <dt id="sans.pr.invertor.Invertor.get_alpha"> 163 <tt class="descname">get_alpha</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_alpha" title="Permalink to this definition">¶</a></dt>319 <tt class="descname">get_alpha</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_alpha" title="Permalink to this definition">¶</a></dt> 164 320 <dd><p>Gets the alpha parameter</p> 165 321 </dd></dl> 166 322 167 <dl class=" attribute">323 <dl class="method"> 168 324 <dt id="sans.pr.invertor.Invertor.get_dmax"> 169 <tt class="descname">get_dmax</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_dmax" title="Permalink to this definition">¶</a></dt>325 <tt class="descname">get_dmax</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_dmax" title="Permalink to this definition">¶</a></dt> 170 326 <dd><p>Gets the maximum distance</p> 171 327 </dd></dl> 172 328 173 <dl class=" attribute">329 <dl class="method"> 174 330 <dt id="sans.pr.invertor.Invertor.get_err"> 175 <tt class="descname">get_err</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_err" title="Permalink to this definition">¶</a></dt>331 <tt class="descname">get_err</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_err" title="Permalink to this definition">¶</a></dt> 176 332 <dd><p>Function to get the err data 177 Takes an array of doubles as input.</p> 178 <blockquote> 179 <div>@return: number of entries found</div></blockquote> 180 </dd></dl> 181 182 <dl class="attribute"> 333 Takes an array of doubles as input. 334 @return: number of entries found</p> 335 </dd></dl> 336 337 <dl class="method"> 183 338 <dt id="sans.pr.invertor.Invertor.get_has_bck"> 184 <tt class="descname">get_has_bck</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_has_bck" title="Permalink to this definition">¶</a></dt>339 <tt class="descname">get_has_bck</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_has_bck" title="Permalink to this definition">¶</a></dt> 185 340 <dd><p>Gets background flag</p> 186 341 </dd></dl> 187 342 188 <dl class=" attribute">343 <dl class="method"> 189 344 <dt id="sans.pr.invertor.Invertor.get_nerr"> 190 <tt class="descname">get_nerr</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_nerr" title="Permalink to this definition">¶</a></dt>345 <tt class="descname">get_nerr</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_nerr" title="Permalink to this definition">¶</a></dt> 191 346 <dd><p>Gets the number of err points</p> 192 347 </dd></dl> 193 348 194 <dl class=" attribute">349 <dl class="method"> 195 350 <dt id="sans.pr.invertor.Invertor.get_nx"> 196 <tt class="descname">get_nx</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_nx" title="Permalink to this definition">¶</a></dt>351 <tt class="descname">get_nx</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_nx" title="Permalink to this definition">¶</a></dt> 197 352 <dd><p>Gets the number of x points</p> 198 353 </dd></dl> 199 354 200 <dl class=" attribute">355 <dl class="method"> 201 356 <dt id="sans.pr.invertor.Invertor.get_ny"> 202 <tt class="descname">get_ny</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_ny" title="Permalink to this definition">¶</a></dt>357 <tt class="descname">get_ny</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_ny" title="Permalink to this definition">¶</a></dt> 203 358 <dd><p>Gets the number of y points</p> 204 359 </dd></dl> 205 360 206 <dl class=" attribute">361 <dl class="method"> 207 362 <dt id="sans.pr.invertor.Invertor.get_peaks"> 208 <tt class="descname">get_peaks</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_peaks" title="Permalink to this definition">¶</a></dt>363 <tt class="descname">get_peaks</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_peaks" title="Permalink to this definition">¶</a></dt> 209 364 <dd><p>Returns the number of peaks in the output P(r) distrubution 210 for the given set of coefficients.</p> 211 <blockquote> 212 <div>@param args: c-parameters 213 @return: number of P(r) peaks</div></blockquote> 214 </dd></dl> 215 216 <dl class="attribute"> 365 for the given set of coefficients. 366 @param args: c-parameters 367 @return: number of P(r) peaks</p> 368 </dd></dl> 369 370 <dl class="method"> 217 371 <dt id="sans.pr.invertor.Invertor.get_pos_err"> 218 <tt class="descname">get_pos_err</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_pos_err" title="Permalink to this definition">¶</a></dt>372 <tt class="descname">get_pos_err</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_pos_err" title="Permalink to this definition">¶</a></dt> 219 373 <dd><p>Returns the fraction of P(r) that is 1 standard deviation 220 above zero over the full range of r for the given set of coefficients.</p> 221 <blockquote> 222 <div>@param args: c-parameters 223 @return: fraction of P(r) that is positive</div></blockquote> 224 </dd></dl> 225 226 <dl class="attribute"> 374 above zero over the full range of r for the given set of coefficients. 375 @param args: c-parameters 376 @return: fraction of P(r) that is positive</p> 377 </dd></dl> 378 379 <dl class="method"> 227 380 <dt id="sans.pr.invertor.Invertor.get_positive"> 228 <tt class="descname">get_positive</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_positive" title="Permalink to this definition">¶</a></dt>381 <tt class="descname">get_positive</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_positive" title="Permalink to this definition">¶</a></dt> 229 382 <dd><p>Returns the fraction of P(r) that is positive over 230 the full range of r for the given set of coefficients.</p> 231 <blockquote> 232 <div>@param args: c-parameters 233 @return: fraction of P(r) that is positive</div></blockquote> 234 </dd></dl> 235 236 <dl class="attribute"> 383 the full range of r for the given set of coefficients. 384 @param args: c-parameters 385 @return: fraction of P(r) that is positive</p> 386 </dd></dl> 387 388 <dl class="method"> 237 389 <dt id="sans.pr.invertor.Invertor.get_pr_err"> 238 <tt class="descname">get_pr_err</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_pr_err" title="Permalink to this definition">¶</a></dt>390 <tt class="descname">get_pr_err</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_pr_err" title="Permalink to this definition">¶</a></dt> 239 391 <dd><p>Function to call to evaluate P(r) with errors 240 392 @param args: c-parameters and r … … 242 394 </dd></dl> 243 395 244 <dl class=" attribute">396 <dl class="method"> 245 397 <dt id="sans.pr.invertor.Invertor.get_qmax"> 246 <tt class="descname">get_qmax</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_qmax" title="Permalink to this definition">¶</a></dt>398 <tt class="descname">get_qmax</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_qmax" title="Permalink to this definition">¶</a></dt> 247 399 <dd><p>Gets the maximum q</p> 248 400 </dd></dl> 249 401 250 <dl class=" attribute">402 <dl class="method"> 251 403 <dt id="sans.pr.invertor.Invertor.get_qmin"> 252 <tt class="descname">get_qmin</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_qmin" title="Permalink to this definition">¶</a></dt>404 <tt class="descname">get_qmin</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_qmin" title="Permalink to this definition">¶</a></dt> 253 405 <dd><p>Gets the minimum q</p> 254 406 </dd></dl> 255 407 256 <dl class=" attribute">408 <dl class="method"> 257 409 <dt id="sans.pr.invertor.Invertor.get_slit_height"> 258 <tt class="descname">get_slit_height</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_slit_height" title="Permalink to this definition">¶</a></dt>410 <tt class="descname">get_slit_height</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_slit_height" title="Permalink to this definition">¶</a></dt> 259 411 <dd><p>Gets the slit height</p> 260 412 </dd></dl> 261 413 262 <dl class=" attribute">414 <dl class="method"> 263 415 <dt id="sans.pr.invertor.Invertor.get_slit_width"> 264 <tt class="descname">get_slit_width</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_slit_width" title="Permalink to this definition">¶</a></dt>416 <tt class="descname">get_slit_width</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_slit_width" title="Permalink to this definition">¶</a></dt> 265 417 <dd><p>Gets the slit width</p> 266 418 </dd></dl> 267 419 268 <dl class=" attribute">420 <dl class="method"> 269 421 <dt id="sans.pr.invertor.Invertor.get_x"> 270 <tt class="descname">get_x</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_x" title="Permalink to this definition">¶</a></dt>422 <tt class="descname">get_x</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_x" title="Permalink to this definition">¶</a></dt> 271 423 <dd><p>Function to get the x data 272 Takes an array of doubles as input.</p> 273 <blockquote> 274 <div>@return: number of entries found</div></blockquote> 275 </dd></dl> 276 277 <dl class="attribute"> 424 Takes an array of doubles as input. 425 @return: number of entries found</p> 426 </dd></dl> 427 428 <dl class="method"> 278 429 <dt id="sans.pr.invertor.Invertor.get_y"> 279 <tt class="descname">get_y</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.get_y" title="Permalink to this definition">¶</a></dt>430 <tt class="descname">get_y</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.get_y" title="Permalink to this definition">¶</a></dt> 280 431 <dd><p>Function to get the y data 281 Takes an array of doubles as input.</p> 282 <blockquote> 283 <div>@return: number of entries found</div></blockquote> 284 </dd></dl> 432 Takes an array of doubles as input. 433 @return: number of entries found</p> 434 </dd></dl> 435 436 <dl class="attribute"> 437 <dt id="sans.pr.invertor.Invertor.info"> 438 <tt class="descname">info</tt><em class="property"> = {}</em><a class="headerlink" href="#sans.pr.invertor.Invertor.info" title="Permalink to this definition">¶</a></dt> 439 <dd></dd></dl> 285 440 286 441 <dl class="method"> 287 442 <dt id="sans.pr.invertor.Invertor.invert"> 288 <tt class="descname">invert</tt><big>(</big>< em>nfunc=10</em>, <em>nr=20</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.invert" title="Permalink to this definition">¶</a></dt>443 <tt class="descname">invert</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.invert" title="Permalink to this definition">¶</a></dt> 289 444 <dd><p>Perform inversion to P(r)</p> 290 445 <p>The problem is solved by posing the problem as Ax = b, … … 311 466 <col class="field-body" /> 312 467 <tbody valign="top"> 313 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">468 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> 314 469 <li><strong>nfunc</strong> – number of base functions to use.</li> 315 470 <li><strong>nr</strong> – number of r points to evaluate the 2nd derivative at for the reg. term.</li> … … 317 472 </td> 318 473 </tr> 319 <tr class="field "><th class="field-name">Returns:</th><td class="field-body"><p class="first last">c_out, c_cov - the coefficients with covariance matrix</p>474 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last">c_out, c_cov - the coefficients with covariance matrix</p> 320 475 </td> 321 476 </tr> … … 326 481 <dl class="method"> 327 482 <dt id="sans.pr.invertor.Invertor.invert_optimize"> 328 <tt class="descname">invert_optimize</tt><big>(</big>< em>nfunc=10</em>, <em>nr=20</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.invert_optimize" title="Permalink to this definition">¶</a></dt>483 <tt class="descname">invert_optimize</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.invert_optimize" title="Permalink to this definition">¶</a></dt> 329 484 <dd><p>Slower version of the P(r) inversion that uses scipy.optimize.leastsq.</p> 330 485 <p>This probably produce more reliable results, but is much slower. … … 338 493 <col class="field-body" /> 339 494 <tbody valign="top"> 340 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">495 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> 341 496 <li><strong>nfunc</strong> – number of base functions to use.</li> 342 497 <li><strong>nr</strong> – number of r points to evaluate the 2nd derivative at … … 345 500 </td> 346 501 </tr> 347 <tr class="field "><th class="field-name">Returns:</th><td class="field-body"><p class="first last">c_out, c_cov - the coefficients with covariance matrix</p>502 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last">c_out, c_cov - the coefficients with covariance matrix</p> 348 503 </td> 349 504 </tr> … … 354 509 <dl class="method"> 355 510 <dt id="sans.pr.invertor.Invertor.iq"> 356 <tt class="descname">iq</tt><big>(</big>< em>out</em>, <em>q</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.iq" title="Permalink to this definition">¶</a></dt>511 <tt class="descname">iq</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.iq" title="Permalink to this definition">¶</a></dt> 357 512 <dd><p>Function to call to evaluate the scattering intensity</p> 358 513 <table class="docutils field-list" frame="void" rules="none"> … … 360 515 <col class="field-body" /> 361 516 <tbody valign="top"> 362 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><strong>args</strong> – c-parameters, and q</td>363 </tr> 364 <tr class="field "><th class="field-name">Returns:</th><td class="field-body">I(q)</td>517 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>args</strong> – c-parameters, and q</td> 518 </tr> 519 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">I(q)</td> 365 520 </tr> 366 521 </tbody> … … 368 523 </dd></dl> 369 524 370 <dl class=" attribute">525 <dl class="method"> 371 526 <dt id="sans.pr.invertor.Invertor.iq0"> 372 <tt class="descname">iq0</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.iq0" title="Permalink to this definition">¶</a></dt>527 <tt class="descname">iq0</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.iq0" title="Permalink to this definition">¶</a></dt> 373 528 <dd><p>Returns the value of I(q=0). 374 529 @param args: c-parameters … … 376 531 </dd></dl> 377 532 378 <dl class=" attribute">533 <dl class="method"> 379 534 <dt id="sans.pr.invertor.Invertor.iq_smeared"> 380 <tt class="descname">iq_smeared</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.iq_smeared" title="Permalink to this definition">¶</a></dt>535 <tt class="descname">iq_smeared</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.iq_smeared" title="Permalink to this definition">¶</a></dt> 381 536 <dd><p>Function to call to evaluate the scattering intensity. 382 The scattering intensity is slit-smeared. @param args: c-parameters, and q</p> 383 <blockquote> 384 <div>@return: I(q)</div></blockquote> 385 </dd></dl> 386 387 <dl class="attribute"> 537 The scattering intensity is slit-smeared. @param args: c-parameters, and q 538 @return: I(q)</p> 539 </dd></dl> 540 541 <dl class="method"> 388 542 <dt id="sans.pr.invertor.Invertor.is_valid"> 389 <tt class="descname">is_valid</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.is_valid" title="Permalink to this definition">¶</a></dt>543 <tt class="descname">is_valid</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.is_valid" title="Permalink to this definition">¶</a></dt> 390 544 <dd><p>Check the validity of the stored data 391 545 @return: Returns the number of points if it’s all good, -1 otherwise</p> … … 394 548 <dl class="method"> 395 549 <dt id="sans.pr.invertor.Invertor.lstsq"> 396 <tt class="descname">lstsq</tt><big>(</big>< em>nfunc=5</em>, <em>nr=20</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.lstsq" title="Permalink to this definition">¶</a></dt>550 <tt class="descname">lstsq</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.lstsq" title="Permalink to this definition">¶</a></dt> 397 551 <dd><p>The problem is solved by posing the problem as Ax = b, 398 552 where x is the set of coefficients we are looking for.</p> … … 419 573 <col class="field-body" /> 420 574 <tbody valign="top"> 421 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">575 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> 422 576 <li><strong>nfunc</strong> – number of base functions to use.</li> 423 577 <li><strong>nr</strong> – number of r points to evaluate the 2nd derivative at … … 433 587 434 588 <dl class="attribute"> 589 <dt id="sans.pr.invertor.Invertor.nfunc"> 590 <tt class="descname">nfunc</tt><em class="property"> = 10</em><a class="headerlink" href="#sans.pr.invertor.Invertor.nfunc" title="Permalink to this definition">¶</a></dt> 591 <dd></dd></dl> 592 593 <dl class="method"> 435 594 <dt id="sans.pr.invertor.Invertor.oscillations"> 436 <tt class="descname">oscillations</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.oscillations" title="Permalink to this definition">¶</a></dt>595 <tt class="descname">oscillations</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.oscillations" title="Permalink to this definition">¶</a></dt> 437 596 <dd><p>Returns the value of the oscillation figure of merit for 438 597 the given set of coefficients. For a sphere, the oscillation … … 444 603 445 604 <dl class="attribute"> 605 <dt id="sans.pr.invertor.Invertor.out"> 606 <tt class="descname">out</tt><em class="property"> = None</em><a class="headerlink" href="#sans.pr.invertor.Invertor.out" title="Permalink to this definition">¶</a></dt> 607 <dd></dd></dl> 608 609 <dl class="method"> 446 610 <dt id="sans.pr.invertor.Invertor.pr"> 447 <tt class="descname">pr</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.pr" title="Permalink to this definition">¶</a></dt>611 <tt class="descname">pr</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.pr" title="Permalink to this definition">¶</a></dt> 448 612 <dd><p>Function to call to evaluate P(r) 449 613 @param args: c-parameters and r … … 453 617 <dl class="method"> 454 618 <dt id="sans.pr.invertor.Invertor.pr_err"> 455 <tt class="descname">pr_err</tt><big>(</big>< em>c</em>, <em>c_cov</em>, <em>r</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.pr_err" title="Permalink to this definition">¶</a></dt>619 <tt class="descname">pr_err</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.pr_err" title="Permalink to this definition">¶</a></dt> 456 620 <dd><p>Returns the value of P(r) for a given r, and base function 457 621 coefficients, with error.</p> … … 460 624 <col class="field-body" /> 461 625 <tbody valign="top"> 462 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">626 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> 463 627 <li><strong>c</strong> – base function coefficients</li> 464 628 <li><strong>c_cov</strong> – covariance matrice of the base function coefficients</li> … … 467 631 </td> 468 632 </tr> 469 <tr class="field "><th class="field-name">Returns:</th><td class="field-body"><p class="first last">P(r)</p>633 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last">P(r)</p> 470 634 </td> 471 635 </tr> … … 476 640 <dl class="method"> 477 641 <dt id="sans.pr.invertor.Invertor.pr_fit"> 478 <tt class="descname">pr_fit</tt><big>(</big>< em>nfunc=5</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.pr_fit" title="Permalink to this definition">¶</a></dt>642 <tt class="descname">pr_fit</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.pr_fit" title="Permalink to this definition">¶</a></dt> 479 643 <dd><p>This is a direct fit to a given P(r). It assumes that the y data 480 644 is set to some P(r) distribution that we are trying to reproduce … … 483 647 </dd></dl> 484 648 485 <dl class=" attribute">649 <dl class="method"> 486 650 <dt id="sans.pr.invertor.Invertor.pr_residuals"> 487 <tt class="descname">pr_residuals</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.pr_residuals" title="Permalink to this definition">¶</a></dt>651 <tt class="descname">pr_residuals</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.pr_residuals" title="Permalink to this definition">¶</a></dt> 488 652 <dd><p>Function to call to evaluate the residuals 489 for P(r) minimization (for testing purposes)</p> 490 <blockquote> 491 <div>@param args: input parameters 492 @return: list of residuals</div></blockquote> 493 </dd></dl> 494 495 <dl class="attribute"> 653 for P(r) minimization (for testing purposes) 654 @param args: input parameters 655 @return: list of residuals</p> 656 </dd></dl> 657 658 <dl class="method"> 496 659 <dt id="sans.pr.invertor.Invertor.residuals"> 497 <tt class="descname">residuals</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.residuals" title="Permalink to this definition">¶</a></dt>660 <tt class="descname">residuals</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.residuals" title="Permalink to this definition">¶</a></dt> 498 661 <dd><p>Function to call to evaluate the residuals 499 for P(r) inversion</p> 500 <blockquote> 501 <div>@param args: input parameters 502 @return: list of residuals</div></blockquote> 503 </dd></dl> 504 505 <dl class="attribute"> 662 for P(r) inversion 663 @param args: input parameters 664 @return: list of residuals</p> 665 </dd></dl> 666 667 <dl class="method"> 506 668 <dt id="sans.pr.invertor.Invertor.rg"> 507 <tt class="descname">rg</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.rg" title="Permalink to this definition">¶</a></dt>669 <tt class="descname">rg</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.rg" title="Permalink to this definition">¶</a></dt> 508 670 <dd><p>Returns the value of the radius of gyration Rg. 509 671 @param args: c-parameters … … 511 673 </dd></dl> 512 674 513 <dl class=" attribute">675 <dl class="method"> 514 676 <dt id="sans.pr.invertor.Invertor.set_alpha"> 515 <tt class="descname">set_alpha</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_alpha" title="Permalink to this definition">¶</a></dt>677 <tt class="descname">set_alpha</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_alpha" title="Permalink to this definition">¶</a></dt> 516 678 <dd><p>Sets the alpha parameter</p> 517 679 </dd></dl> 518 680 519 <dl class=" attribute">681 <dl class="method"> 520 682 <dt id="sans.pr.invertor.Invertor.set_dmax"> 521 <tt class="descname">set_dmax</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_dmax" title="Permalink to this definition">¶</a></dt>683 <tt class="descname">set_dmax</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_dmax" title="Permalink to this definition">¶</a></dt> 522 684 <dd><p>Sets the maximum distance</p> 523 685 </dd></dl> 524 686 525 <dl class=" attribute">687 <dl class="method"> 526 688 <dt id="sans.pr.invertor.Invertor.set_err"> 527 <tt class="descname">set_err</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_err" title="Permalink to this definition">¶</a></dt>689 <tt class="descname">set_err</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_err" title="Permalink to this definition">¶</a></dt> 528 690 <dd><p>Function to set the err data 529 Takes an array of doubles as input.</p> 530 <blockquote> 531 <div>@return: number of entries found</div></blockquote> 532 </dd></dl> 533 534 <dl class="attribute"> 691 Takes an array of doubles as input. 692 @return: number of entries found</p> 693 </dd></dl> 694 695 <dl class="method"> 535 696 <dt id="sans.pr.invertor.Invertor.set_has_bck"> 536 <tt class="descname">set_has_bck</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_has_bck" title="Permalink to this definition">¶</a></dt>697 <tt class="descname">set_has_bck</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_has_bck" title="Permalink to this definition">¶</a></dt> 537 698 <dd><p>Sets background flag</p> 538 699 </dd></dl> 539 700 540 <dl class=" attribute">701 <dl class="method"> 541 702 <dt id="sans.pr.invertor.Invertor.set_qmax"> 542 <tt class="descname">set_qmax</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_qmax" title="Permalink to this definition">¶</a></dt>703 <tt class="descname">set_qmax</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_qmax" title="Permalink to this definition">¶</a></dt> 543 704 <dd><p>Sets the maximum q</p> 544 705 </dd></dl> 545 706 546 <dl class=" attribute">707 <dl class="method"> 547 708 <dt id="sans.pr.invertor.Invertor.set_qmin"> 548 <tt class="descname">set_qmin</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_qmin" title="Permalink to this definition">¶</a></dt>709 <tt class="descname">set_qmin</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_qmin" title="Permalink to this definition">¶</a></dt> 549 710 <dd><p>Sets the minimum q</p> 550 711 </dd></dl> 551 712 552 <dl class=" attribute">713 <dl class="method"> 553 714 <dt id="sans.pr.invertor.Invertor.set_slit_height"> 554 <tt class="descname">set_slit_height</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_slit_height" title="Permalink to this definition">¶</a></dt>715 <tt class="descname">set_slit_height</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_slit_height" title="Permalink to this definition">¶</a></dt> 555 716 <dd><p>Sets the slit height in units of q [A-1]</p> 556 717 </dd></dl> 557 718 558 <dl class=" attribute">719 <dl class="method"> 559 720 <dt id="sans.pr.invertor.Invertor.set_slit_width"> 560 <tt class="descname">set_slit_width</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_slit_width" title="Permalink to this definition">¶</a></dt>721 <tt class="descname">set_slit_width</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_slit_width" title="Permalink to this definition">¶</a></dt> 561 722 <dd><p>Sets the slit width in units of q [A-1]</p> 562 723 </dd></dl> 563 724 564 <dl class=" attribute">725 <dl class="method"> 565 726 <dt id="sans.pr.invertor.Invertor.set_x"> 566 <tt class="descname">set_x</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_x" title="Permalink to this definition">¶</a></dt>727 <tt class="descname">set_x</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_x" title="Permalink to this definition">¶</a></dt> 567 728 <dd><p>Function to set the x data 568 Takes an array of doubles as input.</p> 569 <blockquote> 570 <div>@return: number of entries found</div></blockquote> 571 </dd></dl> 572 573 <dl class="attribute"> 729 Takes an array of doubles as input. 730 @return: number of entries found</p> 731 </dd></dl> 732 733 <dl class="method"> 574 734 <dt id="sans.pr.invertor.Invertor.set_y"> 575 <tt class="descname">set_y</tt>< a class="headerlink" href="#sans.pr.invertor.Invertor.set_y" title="Permalink to this definition">¶</a></dt>735 <tt class="descname">set_y</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.set_y" title="Permalink to this definition">¶</a></dt> 576 736 <dd><p>Function to set the y data 577 Takes an array of doubles as input.</p> 578 <blockquote> 579 <div>@return: number of entries found</div></blockquote> 580 </dd></dl> 737 Takes an array of doubles as input. 738 @return: number of entries found</p> 739 </dd></dl> 740 741 <dl class="attribute"> 742 <dt id="sans.pr.invertor.Invertor.suggested_alpha"> 743 <tt class="descname">suggested_alpha</tt><em class="property"> = 0</em><a class="headerlink" href="#sans.pr.invertor.Invertor.suggested_alpha" title="Permalink to this definition">¶</a></dt> 744 <dd></dd></dl> 581 745 582 746 <dl class="method"> 583 747 <dt id="sans.pr.invertor.Invertor.to_file"> 584 <tt class="descname">to_file</tt><big>(</big>< em>path</em>, <em>npts=100</em><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.to_file" title="Permalink to this definition">¶</a></dt>748 <tt class="descname">to_file</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.invertor.Invertor.to_file" title="Permalink to this definition">¶</a></dt> 585 749 <dd><p>Save the state to a file that will be readable 586 750 by SliceView.</p> … … 589 753 <col class="field-body" /> 590 754 <tbody valign="top"> 591 <tr class="field "><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">755 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> 592 756 <li><strong>path</strong> – path of the file to write</li> 593 757 <li><strong>npts</strong> – number of P(r) points to be written</li> … … 620 784 <ul> 621 785 <li><a class="reference internal" href="#">invertor</a><ul> 622 <li><a class="reference internal" href="# module-sans.pr.invertor"><tt class="docutils literal"><span class="pre">sans.pr.invertor</span></tt></a></li>786 <li><a class="reference internal" href="#sans-pr-invertor"><tt class="docutils literal"><span class="pre">sans.pr.invertor</span></tt></a></li> 623 787 </ul> 624 788 </li> … … 639 803 <h3>Quick search</h3> 640 804 <form class="search" action="../search.html" method="get"> 641 <input type="text" name="q" size="18"/>805 <input type="text" name="q" /> 642 806 <input type="submit" value="Go" /> 643 807 <input type="hidden" name="check_keywords" value="yes" /> … … 668 832 <a href="distance_explorer.html" title="distance_explorer" 669 833 >previous</a> |</li> 670 <li><a href="../index.html">pr_inversion v0.1.0 documentation</a> »</li>834 <li><a href="../index.html">pr_inversion 0.1.0 documentation</a> »</li> 671 835 <li><a href="index.html" >Reference</a> »</li> 672 836 </ul> … … 674 838 <div class="footer"> 675 839 © Copyright 2010, sans group. 676 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1. 0.7.840 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1. 677 841 </div> 678 842 </body> -
pr_inversion/docs/sphinx/html/api/num_term.html
ra7c772e r8884996 4 4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5 5 6 6 7 <html xmlns="http://www.w3.org/1999/xhtml"> 7 8 <head> 8 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 9 10 10 <title>num_term — pr_inversion v0.1.0 documentation</title> 11 <title>num_term — pr_inversion 0.1.0 documentation</title> 12 11 13 <link rel="stylesheet" href="../_static/default.css" type="text/css" /> 12 14 <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> 15 13 16 <script type="text/javascript"> 14 17 var DOCUMENTATION_OPTIONS = { … … 23 26 <script type="text/javascript" src="../_static/underscore.js"></script> 24 27 <script type="text/javascript" src="../_static/doctools.js"></script> 25 <link rel="top" title="pr_inversion v0.1.0 documentation" href="../index.html" />28 <link rel="top" title="pr_inversion 0.1.0 documentation" href="../index.html" /> 26 29 <link rel="up" title="Reference" href="index.html" /> 27 30 <link rel="prev" title="invertor" href="invertor.html" /> … … 40 43 <a href="invertor.html" title="invertor" 41 44 accesskey="P">previous</a> |</li> 42 <li><a href="../index.html">pr_inversion v0.1.0 documentation</a> »</li>45 <li><a href="../index.html">pr_inversion 0.1.0 documentation</a> »</li> 43 46 <li><a href="index.html" accesskey="U">Reference</a> »</li> 44 47 </ul> … … 52 55 <div class="section" id="num-term"> 53 56 <h1>num_term<a class="headerlink" href="#num-term" title="Permalink to this headline">¶</a></h1> 54 <div class="section" id=" module-sans.pr.num_term">55 < span id="sans-pr-num-term"></span><h2><a class="reference internal" href="#module-sans.pr.num_term" title="sans.pr.num_term"><tt class="xref py py-mod docutils literal"><span class="pre">sans.pr.num_term</span></tt></a><a class="headerlink" href="#module-sans.pr.num_term" title="Permalink to this headline">¶</a></h2>56 < dl class="class">57 <div class="section" id="sans-pr-num-term"> 58 <h2><a class="reference internal" href="#module-sans.pr.num_term" title="sans.pr.num_term"><tt class="xref py py-mod docutils literal"><span class="pre">sans.pr.num_term</span></tt></a><a class="headerlink" href="#sans-pr-num-term" title="Permalink to this headline">¶</a></h2> 59 <span class="target" id="module-sans.pr.num_term"></span><dl class="class"> 57 60 <dt id="sans.pr.num_term.Num_terms"> 58 <em class="property">class </em><tt class="descclassname">sans.pr.num_term.</tt><tt class="descname">Num_terms</tt>< big>(</big><em>invertor</em><big>)</big><a class="headerlink" href="#sans.pr.num_term.Num_terms" title="Permalink to this definition">¶</a></dt>61 <em class="property">class </em><tt class="descclassname">sans.pr.num_term.</tt><tt class="descname">Num_terms</tt><a class="headerlink" href="#sans.pr.num_term.Num_terms" title="Permalink to this definition">¶</a></dt> 59 62 <dd><dl class="method"> 63 <dt id="sans.pr.num_term.Num_terms.__init__"> 64 <tt class="descname">__init__</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.num_term.Num_terms.__init__" title="Permalink to this definition">¶</a></dt> 65 <dd></dd></dl> 66 67 <dl class="attribute"> 68 <dt id="sans.pr.num_term.Num_terms.__module__"> 69 <tt class="descname">__module__</tt><em class="property"> = 'sans.pr.num_term'</em><a class="headerlink" href="#sans.pr.num_term.Num_terms.__module__" title="Permalink to this definition">¶</a></dt> 70 <dd></dd></dl> 71 72 <dl class="method"> 60 73 <dt id="sans.pr.num_term.Num_terms.compare_err"> 61 74 <tt class="descname">compare_err</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.num_term.Num_terms.compare_err" title="Permalink to this definition">¶</a></dt> … … 69 82 <dl class="method"> 70 83 <dt id="sans.pr.num_term.Num_terms.is_odd"> 71 <tt class="descname">is_odd</tt><big>(</big>< em>n</em><big>)</big><a class="headerlink" href="#sans.pr.num_term.Num_terms.is_odd" title="Permalink to this definition">¶</a></dt>84 <tt class="descname">is_odd</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.num_term.Num_terms.is_odd" title="Permalink to this definition">¶</a></dt> 72 85 <dd></dd></dl> 73 86 … … 84 97 <dl class="method"> 85 98 <dt id="sans.pr.num_term.Num_terms.num_terms"> 86 <tt class="descname">num_terms</tt><big>(</big>< em>isquit_func=None</em><big>)</big><a class="headerlink" href="#sans.pr.num_term.Num_terms.num_terms" title="Permalink to this definition">¶</a></dt>99 <tt class="descname">num_terms</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.num_term.Num_terms.num_terms" title="Permalink to this definition">¶</a></dt> 87 100 <dd></dd></dl> 88 101 … … 96 109 <dl class="function"> 97 110 <dt id="sans.pr.num_term.load"> 98 <tt class="descclassname">sans.pr.num_term.</tt><tt class="descname">load</tt><big>(</big>< em>path</em><big>)</big><a class="headerlink" href="#sans.pr.num_term.load" title="Permalink to this definition">¶</a></dt>111 <tt class="descclassname">sans.pr.num_term.</tt><tt class="descname">load</tt><big>(</big><big>)</big><a class="headerlink" href="#sans.pr.num_term.load" title="Permalink to this definition">¶</a></dt> 99 112 <dd></dd></dl> 100 113 … … 111 124 <ul> 112 125 <li><a class="reference internal" href="#">num_term</a><ul> 113 <li><a class="reference internal" href="# module-sans.pr.num_term"><tt class="docutils literal"><span class="pre">sans.pr.num_term</span></tt></a></li>126 <li><a class="reference internal" href="#sans-pr-num-term"><tt class="docutils literal"><span class="pre">sans.pr.num_term</span></tt></a></li> 114 127 </ul> 115 128 </li> … … 127 140 <h3>Quick search</h3> 128 141 <form class="search" action="../search.html" method="get"> 129 <input type="text" name="q" size="18"/>142 <input type="text" name="q" /> 130 143 <input type="submit" value="Go" /> 131 144 <input type="hidden" name="check_keywords" value="yes" /> … … 153 166 <a href="invertor.html" title="invertor" 154 167 >previous</a> |</li> 155 <li><a href="../index.html">pr_inversion v0.1.0 documentation</a> »</li>168 <li><a href="../index.html">pr_inversion 0.1.0 documentation</a> »</li> 156 169 <li><a href="index.html" >Reference</a> »</li> 157 170 </ul> … … 159 172 <div class="footer"> 160 173 © Copyright 2010, sans group. 161 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1. 0.7.174 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1. 162 175 </div> 163 176 </body> -
pr_inversion/docs/sphinx/html/genindex.html
ra7c772e r8884996 1 2 1 3 2 4 3 5 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 4 6 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 7 5 8 6 9 <html xmlns="http://www.w3.org/1999/xhtml"> … … 8 11 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 9 12 10 <title>Index — pr_inversion v0.1.0 documentation</title> 13 <title>Index — pr_inversion 0.1.0 documentation</title> 14 11 15 <link rel="stylesheet" href="_static/default.css" type="text/css" /> 12 16 <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> 17 13 18 <script type="text/javascript"> 14 19 var DOCUMENTATION_OPTIONS = { … … 23 28 <script type="text/javascript" src="_static/underscore.js"></script> 24 29 <script type="text/javascript" src="_static/doctools.js"></script> 25 <link rel="top" title="pr_inversion v0.1.0 documentation" href="index.html" />30 <link rel="top" title="pr_inversion 0.1.0 documentation" href="index.html" /> 26 31 </head> 27 32 <body> … … 35 40 <a href="py-modindex.html" title="Python Module Index" 36 41 >modules</a> |</li> 37 <li><a href="index.html">pr_inversion v0.1.0 documentation</a> »</li>42 <li><a href="index.html">pr_inversion 0.1.0 documentation</a> »</li> 38 43 </ul> 39 44 </div> … … 45 50 46 51 47 <h1 id="index">Index</h1> 48 49 <div class="genindex-jumpbox"> 50 <a href="#B"><strong>B</strong></a> | <a href="#C"><strong>C</strong></a> | <a href="#D"><strong>D</strong></a> | <a href="#E"><strong>E</strong></a> | <a href="#F"><strong>F</strong></a> | <a href="#G"><strong>G</strong></a> | <a href="#H"><strong>H</strong></a> | <a href="#I"><strong>I</strong></a> | <a href="#L"><strong>L</strong></a> | <a href="#M"><strong>M</strong></a> | <a href="#N"><strong>N</strong></a> | <a href="#O"><strong>O</strong></a> | <a href="#P"><strong>P</strong></a> | <a href="#R"><strong>R</strong></a> | <a href="#S"><strong>S</strong></a> | <a href="#T"><strong>T</strong></a> 51 </div> 52 <h1 id="index">Index</h1> 53 54 <div class="genindex-jumpbox"> 55 <a href="#_"><strong>_</strong></a> 56 | <a href="#B"><strong>B</strong></a> 57 | <a href="#C"><strong>C</strong></a> 58 | <a href="#D"><strong>D</strong></a> 59 | <a href="#E"><strong>E</strong></a> 60 | <a href="#F"><strong>F</strong></a> 61 | <a href="#G"><strong>G</strong></a> 62 | <a href="#H"><strong>H</strong></a> 63 | <a href="#I"><strong>I</strong></a> 64 | <a href="#L"><strong>L</strong></a> 65 | <a href="#M"><strong>M</strong></a> 66 | <a href="#N"><strong>N</strong></a> 67 | <a href="#O"><strong>O</strong></a> 68 | <a href="#P"><strong>P</strong></a> 69 | <a href="#R"><strong>R</strong></a> 70 | <a href="#S"><strong>S</strong></a> 71 | <a href="#T"><strong>T</strong></a> 72 73 </div> 74 <h2 id="_">_</h2> 75 <table style="width: 100%" class="indextable genindextable"><tr> 76 <td style="width: 33%" valign="top"><dl> 77 78 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__call__">__call__() (sans.pr.distance_explorer.DistExplorer method)</a> 79 </dt> 80 81 82 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__class__">__class__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 83 </dt> 84 85 <dd><dl> 86 87 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__class__">(sans.pr.invertor.Invertor attribute)</a> 88 </dt> 89 90 </dl></dd> 91 92 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__delattr__">__delattr__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 93 </dt> 94 95 <dd><dl> 96 97 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__delattr__">(sans.pr.invertor.Invertor attribute)</a> 98 </dt> 99 100 </dl></dd> 101 102 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__dict__">__dict__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 103 </dt> 104 105 <dd><dl> 106 107 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__dict__">(sans.pr.invertor.Invertor attribute)</a> 108 </dt> 109 110 </dl></dd> 111 112 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__getattr__">__getattr__() (sans.pr.invertor.Invertor method)</a> 113 </dt> 114 115 116 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__getattribute__">__getattribute__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 117 </dt> 118 119 <dd><dl> 120 121 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__getattribute__">(sans.pr.invertor.Invertor attribute)</a> 122 </dt> 123 124 </dl></dd> 125 126 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__hash__">__hash__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 127 </dt> 128 129 <dd><dl> 130 131 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__hash__">(sans.pr.invertor.Invertor attribute)</a> 132 </dt> 133 134 </dl></dd> 135 136 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__init__">__init__() (sans.pr.distance_explorer.DistExplorer method)</a> 137 </dt> 138 139 <dd><dl> 140 141 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.Results.__init__">(sans.pr.distance_explorer.Results method)</a> 142 </dt> 143 144 145 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__init__">(sans.pr.invertor.Invertor method)</a> 146 </dt> 147 148 149 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.__init__">(sans.pr.num_term.Num_terms method)</a> 150 </dt> 151 152 </dl></dd> 153 154 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__module__">__module__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 155 </dt> 156 157 <dd><dl> 158 159 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.Results.__module__">(sans.pr.distance_explorer.Results attribute)</a> 160 </dt> 161 162 163 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__module__">(sans.pr.invertor.Invertor attribute)</a> 164 </dt> 165 166 167 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.__module__">(sans.pr.num_term.Num_terms attribute)</a> 168 </dt> 169 170 </dl></dd> 171 172 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__new__">__new__() (sans.pr.distance_explorer.DistExplorer static method)</a> 173 </dt> 174 175 <dd><dl> 176 177 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__new__">(sans.pr.invertor.Invertor static method)</a> 178 </dt> 179 180 </dl></dd> 181 182 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__reduce__">__reduce__() (sans.pr.distance_explorer.DistExplorer method)</a> 183 </dt> 184 185 <dd><dl> 186 187 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__reduce__">(sans.pr.invertor.Invertor method)</a> 188 </dt> 189 190 </dl></dd> 191 </dl></td> 192 <td style="width: 33%" valign="top"><dl> 193 194 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__reduce_ex__">__reduce_ex__() (sans.pr.distance_explorer.DistExplorer method)</a> 195 </dt> 196 197 <dd><dl> 198 199 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__reduce_ex__">(sans.pr.invertor.Invertor method)</a> 200 </dt> 201 202 </dl></dd> 203 204 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__repr__">__repr__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 205 </dt> 206 207 <dd><dl> 208 209 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__repr__">(sans.pr.invertor.Invertor attribute)</a> 210 </dt> 211 212 </dl></dd> 213 214 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__setattr__">__setattr__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 215 </dt> 216 217 218 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__setattr__">__setattr__() (sans.pr.invertor.Invertor method)</a> 219 </dt> 220 221 222 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__setstate__">__setstate__() (sans.pr.invertor.Invertor method)</a> 223 </dt> 224 225 226 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__str__">__str__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 227 </dt> 228 229 <dd><dl> 230 231 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__str__">(sans.pr.invertor.Invertor attribute)</a> 232 </dt> 233 234 </dl></dd> 235 236 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer.__weakref__">__weakref__ (sans.pr.distance_explorer.DistExplorer attribute)</a> 237 </dt> 238 239 <dd><dl> 240 241 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.__weakref__">(sans.pr.invertor.Invertor attribute)</a> 242 </dt> 243 244 </dl></dd> 245 246 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor._accept_q">_accept_q() (sans.pr.invertor.Invertor method)</a> 247 </dt> 248 249 250 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor._get_invcov_matrix">_get_invcov_matrix() (sans.pr.invertor.Invertor method)</a> 251 </dt> 252 253 254 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor._get_matrix">_get_matrix() (sans.pr.invertor.Invertor method)</a> 255 </dt> 256 257 258 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor._get_reg_size">_get_reg_size() (sans.pr.invertor.Invertor method)</a> 259 </dt> 260 261 </dl></td> 262 </tr></table> 263 52 264 <h2 id="B">B</h2> 53 265 <table style="width: 100%" class="indextable genindextable"><tr> 54 266 <td style="width: 33%" valign="top"><dl> 55 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.basefunc_ft">basefunc_ft (sans.pr.invertor.Invertor attribute)</a></dt> 56 </dl></td> 267 268 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.background">background (sans.pr.invertor.Invertor attribute)</a> 269 </dt> 270 271 </dl></td> 272 <td style="width: 33%" valign="top"><dl> 273 274 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.basefunc_ft">basefunc_ft() (sans.pr.invertor.Invertor method)</a> 275 </dt> 276 277 </dl></td> 57 278 </tr></table> 58 279 … … 60 281 <table style="width: 100%" class="indextable genindextable"><tr> 61 282 <td style="width: 33%" valign="top"><dl> 62 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.clone">clone() (sans.pr.invertor.Invertor method)</a></dt> 63 </dl></td> 64 <td style="width: 33%" valign="top"><dl> 65 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.compare_err">compare_err() (sans.pr.num_term.Num_terms method)</a></dt> 66 </dl></td> 283 284 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.chi2">chi2 (sans.pr.invertor.Invertor attribute)</a> 285 </dt> 286 287 288 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.clone">clone() (sans.pr.invertor.Invertor method)</a> 289 </dt> 290 291 </dl></td> 292 <td style="width: 33%" valign="top"><dl> 293 294 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.compare_err">compare_err() (sans.pr.num_term.Num_terms method)</a> 295 </dt> 296 297 298 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.cov">cov (sans.pr.invertor.Invertor attribute)</a> 299 </dt> 300 301 </dl></td> 67 302 </tr></table> 68 303 … … 70 305 <table style="width: 100%" class="indextable genindextable"><tr> 71 306 <td style="width: 33%" valign="top"><dl> 72 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer">DistExplorer (class in sans.pr.distance_explorer)</a></dt> 73 </dl></td> 307 308 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.DistExplorer">DistExplorer (class in sans.pr.distance_explorer)</a> 309 </dt> 310 311 </dl></td> 74 312 </tr></table> 75 313 … … 77 315 <table style="width: 100%" class="indextable genindextable"><tr> 78 316 <td style="width: 33%" valign="top"><dl> 79 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.estimate_alpha">estimate_alpha() (sans.pr.invertor.Invertor method)</a></dt> 80 </dl></td> 81 <td style="width: 33%" valign="top"><dl> 82 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.estimate_numterms">estimate_numterms() (sans.pr.invertor.Invertor method)</a></dt> 83 </dl></td> 317 318 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.elapsed">elapsed (sans.pr.invertor.Invertor attribute)</a> 319 </dt> 320 321 322 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.estimate_alpha">estimate_alpha() (sans.pr.invertor.Invertor method)</a> 323 </dt> 324 325 </dl></td> 326 <td style="width: 33%" valign="top"><dl> 327 328 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.estimate_numterms">estimate_numterms() (sans.pr.invertor.Invertor method)</a> 329 </dt> 330 331 </dl></td> 84 332 </tr></table> 85 333 … … 87 335 <table style="width: 100%" class="indextable genindextable"><tr> 88 336 <td style="width: 33%" valign="top"><dl> 89 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.from_file">from_file() (sans.pr.invertor.Invertor method)</a></dt> 90 </dl></td> 337 338 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.from_file">from_file() (sans.pr.invertor.Invertor method)</a> 339 </dt> 340 341 </dl></td> 91 342 </tr></table> 92 343 … … 94 345 <table style="width: 100%" class="indextable genindextable"><tr> 95 346 <td style="width: 33%" valign="top"><dl> 96 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.get0_out">get0_out() (sans.pr.num_term.Num_terms method)</a></dt> 97 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_alpha">get_alpha (sans.pr.invertor.Invertor attribute)</a></dt> 98 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_dmax">get_dmax (sans.pr.invertor.Invertor attribute)</a></dt> 99 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_err">get_err (sans.pr.invertor.Invertor attribute)</a></dt> 100 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_has_bck">get_has_bck (sans.pr.invertor.Invertor attribute)</a></dt> 101 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_nerr">get_nerr (sans.pr.invertor.Invertor attribute)</a></dt> 102 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_nx">get_nx (sans.pr.invertor.Invertor attribute)</a></dt> 103 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_ny">get_ny (sans.pr.invertor.Invertor attribute)</a></dt> 104 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_peaks">get_peaks (sans.pr.invertor.Invertor attribute)</a></dt> 105 </dl></td> 106 <td style="width: 33%" valign="top"><dl> 107 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_pos_err">get_pos_err (sans.pr.invertor.Invertor attribute)</a></dt> 108 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_positive">get_positive (sans.pr.invertor.Invertor attribute)</a></dt> 109 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_pr_err">get_pr_err (sans.pr.invertor.Invertor attribute)</a></dt> 110 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_qmax">get_qmax (sans.pr.invertor.Invertor attribute)</a></dt> 111 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_qmin">get_qmin (sans.pr.invertor.Invertor attribute)</a></dt> 112 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_slit_height">get_slit_height (sans.pr.invertor.Invertor attribute)</a></dt> 113 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_slit_width">get_slit_width (sans.pr.invertor.Invertor attribute)</a></dt> 114 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_x">get_x (sans.pr.invertor.Invertor attribute)</a></dt> 115 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_y">get_y (sans.pr.invertor.Invertor attribute)</a></dt> 116 </dl></td> 347 348 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.get0_out">get0_out() (sans.pr.num_term.Num_terms method)</a> 349 </dt> 350 351 352 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_alpha">get_alpha() (sans.pr.invertor.Invertor method)</a> 353 </dt> 354 355 356 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_dmax">get_dmax() (sans.pr.invertor.Invertor method)</a> 357 </dt> 358 359 360 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_err">get_err() (sans.pr.invertor.Invertor method)</a> 361 </dt> 362 363 364 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_has_bck">get_has_bck() (sans.pr.invertor.Invertor method)</a> 365 </dt> 366 367 368 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_nerr">get_nerr() (sans.pr.invertor.Invertor method)</a> 369 </dt> 370 371 372 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_nx">get_nx() (sans.pr.invertor.Invertor method)</a> 373 </dt> 374 375 376 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_ny">get_ny() (sans.pr.invertor.Invertor method)</a> 377 </dt> 378 379 380 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_peaks">get_peaks() (sans.pr.invertor.Invertor method)</a> 381 </dt> 382 383 </dl></td> 384 <td style="width: 33%" valign="top"><dl> 385 386 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_pos_err">get_pos_err() (sans.pr.invertor.Invertor method)</a> 387 </dt> 388 389 390 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_positive">get_positive() (sans.pr.invertor.Invertor method)</a> 391 </dt> 392 393 394 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_pr_err">get_pr_err() (sans.pr.invertor.Invertor method)</a> 395 </dt> 396 397 398 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_qmax">get_qmax() (sans.pr.invertor.Invertor method)</a> 399 </dt> 400 401 402 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_qmin">get_qmin() (sans.pr.invertor.Invertor method)</a> 403 </dt> 404 405 406 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_slit_height">get_slit_height() (sans.pr.invertor.Invertor method)</a> 407 </dt> 408 409 410 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_slit_width">get_slit_width() (sans.pr.invertor.Invertor method)</a> 411 </dt> 412 413 414 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_x">get_x() (sans.pr.invertor.Invertor method)</a> 415 </dt> 416 417 418 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.get_y">get_y() (sans.pr.invertor.Invertor method)</a> 419 </dt> 420 421 </dl></td> 117 422 </tr></table> 118 423 … … 120 425 <table style="width: 100%" class="indextable genindextable"><tr> 121 426 <td style="width: 33%" valign="top"><dl> 122 <dt><a href="api/invertor.html#sans.pr.invertor.help">help() (in module sans.pr.invertor)</a></dt> 123 </dl></td> 427 428 <dt><a href="api/invertor.html#sans.pr.invertor.help">help() (in module sans.pr.invertor)</a> 429 </dt> 430 431 </dl></td> 124 432 </tr></table> 125 433 … … 127 435 <table style="width: 100%" class="indextable genindextable"><tr> 128 436 <td style="width: 33%" valign="top"><dl> 129 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.invert">invert() (sans.pr.invertor.Invertor method)</a></dt> 130 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.invert_optimize">invert_optimize() (sans.pr.invertor.Invertor method)</a></dt> 131 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor">Invertor (class in sans.pr.invertor)</a></dt> 132 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.iq">iq() (sans.pr.invertor.Invertor method)</a></dt> 133 </dl></td> 134 <td style="width: 33%" valign="top"><dl> 135 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.iq0">iq0 (sans.pr.invertor.Invertor attribute)</a></dt> 136 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.iq_smeared">iq_smeared (sans.pr.invertor.Invertor attribute)</a></dt> 137 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.is_odd">is_odd() (sans.pr.num_term.Num_terms method)</a></dt> 138 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.is_valid">is_valid (sans.pr.invertor.Invertor attribute)</a></dt> 139 </dl></td> 437 438 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.info">info (sans.pr.invertor.Invertor attribute)</a> 439 </dt> 440 441 442 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.invert">invert() (sans.pr.invertor.Invertor method)</a> 443 </dt> 444 445 446 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.invert_optimize">invert_optimize() (sans.pr.invertor.Invertor method)</a> 447 </dt> 448 449 450 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor">Invertor (class in sans.pr.invertor)</a> 451 </dt> 452 453 454 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.iq">iq() (sans.pr.invertor.Invertor method)</a> 455 </dt> 456 457 </dl></td> 458 <td style="width: 33%" valign="top"><dl> 459 460 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.iq0">iq0() (sans.pr.invertor.Invertor method)</a> 461 </dt> 462 463 464 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.iq_smeared">iq_smeared() (sans.pr.invertor.Invertor method)</a> 465 </dt> 466 467 468 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.is_odd">is_odd() (sans.pr.num_term.Num_terms method)</a> 469 </dt> 470 471 472 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.is_valid">is_valid() (sans.pr.invertor.Invertor method)</a> 473 </dt> 474 475 </dl></td> 140 476 </tr></table> 141 477 … … 143 479 <table style="width: 100%" class="indextable genindextable"><tr> 144 480 <td style="width: 33%" valign="top"><dl> 145 <dt><a href="api/num_term.html#sans.pr.num_term.load">load() (in module sans.pr.num_term)</a></dt> 146 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.ls_osc">ls_osc() (sans.pr.num_term.Num_terms method)</a></dt> 147 </dl></td> 148 <td style="width: 33%" valign="top"><dl> 149 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.lstsq">lstsq() (sans.pr.invertor.Invertor method)</a></dt> 150 </dl></td> 481 482 <dt><a href="api/num_term.html#sans.pr.num_term.load">load() (in module sans.pr.num_term)</a> 483 </dt> 484 485 486 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.ls_osc">ls_osc() (sans.pr.num_term.Num_terms method)</a> 487 </dt> 488 489 </dl></td> 490 <td style="width: 33%" valign="top"><dl> 491 492 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.lstsq">lstsq() (sans.pr.invertor.Invertor method)</a> 493 </dt> 494 495 </dl></td> 151 496 </tr></table> 152 497 … … 154 499 <table style="width: 100%" class="indextable genindextable"><tr> 155 500 <td style="width: 33%" valign="top"><dl> 156 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.median_osc">median_osc() (sans.pr.num_term.Num_terms method)</a></dt> 157 </dl></td> 501 502 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.median_osc">median_osc() (sans.pr.num_term.Num_terms method)</a> 503 </dt> 504 505 </dl></td> 158 506 </tr></table> 159 507 … … 161 509 <table style="width: 100%" class="indextable genindextable"><tr> 162 510 <td style="width: 33%" valign="top"><dl> 163 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms">Num_terms (class in sans.pr.num_term)</a></dt> 164 </dl></td> 165 <td style="width: 33%" valign="top"><dl> 166 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.num_terms">num_terms() (sans.pr.num_term.Num_terms method)</a></dt> 167 </dl></td> 511 512 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.nfunc">nfunc (sans.pr.invertor.Invertor attribute)</a> 513 </dt> 514 515 516 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms">Num_terms (class in sans.pr.num_term)</a> 517 </dt> 518 519 </dl></td> 520 <td style="width: 33%" valign="top"><dl> 521 522 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.num_terms">num_terms() (sans.pr.num_term.Num_terms method)</a> 523 </dt> 524 525 </dl></td> 168 526 </tr></table> 169 527 … … 171 529 <table style="width: 100%" class="indextable genindextable"><tr> 172 530 <td style="width: 33%" valign="top"><dl> 173 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.oscillations">oscillations (sans.pr.invertor.Invertor attribute)</a></dt> 174 </dl></td> 531 532 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.oscillations">oscillations() (sans.pr.invertor.Invertor method)</a> 533 </dt> 534 535 </dl></td> 536 <td style="width: 33%" valign="top"><dl> 537 538 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.out">out (sans.pr.invertor.Invertor attribute)</a> 539 </dt> 540 541 </dl></td> 175 542 </tr></table> 176 543 … … 178 545 <table style="width: 100%" class="indextable genindextable"><tr> 179 546 <td style="width: 33%" valign="top"><dl> 180 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.pr">pr (sans.pr.invertor.Invertor attribute)</a></dt> 181 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.pr_err">pr_err() (sans.pr.invertor.Invertor method)</a></dt> 182 </dl></td> 183 <td style="width: 33%" valign="top"><dl> 184 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.pr_fit">pr_fit() (sans.pr.invertor.Invertor method)</a></dt> 185 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.pr_residuals">pr_residuals (sans.pr.invertor.Invertor attribute)</a></dt> 186 </dl></td> 547 548 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.pr">pr() (sans.pr.invertor.Invertor method)</a> 549 </dt> 550 551 552 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.pr_err">pr_err() (sans.pr.invertor.Invertor method)</a> 553 </dt> 554 555 </dl></td> 556 <td style="width: 33%" valign="top"><dl> 557 558 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.pr_fit">pr_fit() (sans.pr.invertor.Invertor method)</a> 559 </dt> 560 561 562 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.pr_residuals">pr_residuals() (sans.pr.invertor.Invertor method)</a> 563 </dt> 564 565 </dl></td> 187 566 </tr></table> 188 567 … … 190 569 <table style="width: 100%" class="indextable genindextable"><tr> 191 570 <td style="width: 33%" valign="top"><dl> 192 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.residuals">residuals (sans.pr.invertor.Invertor attribute)</a></dt> 193 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.Results">Results (class in sans.pr.distance_explorer)</a></dt> 194 </dl></td> 195 <td style="width: 33%" valign="top"><dl> 196 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.rg">rg (sans.pr.invertor.Invertor attribute)</a></dt> 197 </dl></td> 571 572 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.residuals">residuals() (sans.pr.invertor.Invertor method)</a> 573 </dt> 574 575 576 <dt><a href="api/distance_explorer.html#sans.pr.distance_explorer.Results">Results (class in sans.pr.distance_explorer)</a> 577 </dt> 578 579 </dl></td> 580 <td style="width: 33%" valign="top"><dl> 581 582 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.rg">rg() (sans.pr.invertor.Invertor method)</a> 583 </dt> 584 585 </dl></td> 198 586 </tr></table> 199 587 … … 201 589 <table style="width: 100%" class="indextable genindextable"><tr> 202 590 <td style="width: 33%" valign="top"><dl> 203 <dt><a href="api/distance_explorer.html#module-sans.pr.distance_explorer">sans.pr.distance_explorer (module)</a></dt> 204 <dt><a href="api/invertor.html#module-sans.pr.invertor">sans.pr.invertor (module)</a></dt> 205 <dt><a href="api/num_term.html#module-sans.pr.num_term">sans.pr.num_term (module)</a></dt> 206 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_alpha">set_alpha (sans.pr.invertor.Invertor attribute)</a></dt> 207 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_dmax">set_dmax (sans.pr.invertor.Invertor attribute)</a></dt> 208 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_err">set_err (sans.pr.invertor.Invertor attribute)</a></dt> 209 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_has_bck">set_has_bck (sans.pr.invertor.Invertor attribute)</a></dt> 210 </dl></td> 211 <td style="width: 33%" valign="top"><dl> 212 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_qmax">set_qmax (sans.pr.invertor.Invertor attribute)</a></dt> 213 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_qmin">set_qmin (sans.pr.invertor.Invertor attribute)</a></dt> 214 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_slit_height">set_slit_height (sans.pr.invertor.Invertor attribute)</a></dt> 215 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_slit_width">set_slit_width (sans.pr.invertor.Invertor attribute)</a></dt> 216 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_x">set_x (sans.pr.invertor.Invertor attribute)</a></dt> 217 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_y">set_y (sans.pr.invertor.Invertor attribute)</a></dt> 218 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.sort_osc">sort_osc() (sans.pr.num_term.Num_terms method)</a></dt> 219 </dl></td> 591 592 <dt><a href="api/distance_explorer.html#module-sans.pr.distance_explorer">sans.pr.distance_explorer (module)</a> 593 </dt> 594 595 596 <dt><a href="api/invertor.html#module-sans.pr.invertor">sans.pr.invertor (module)</a> 597 </dt> 598 599 600 <dt><a href="api/num_term.html#module-sans.pr.num_term">sans.pr.num_term (module)</a> 601 </dt> 602 603 604 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_alpha">set_alpha() (sans.pr.invertor.Invertor method)</a> 605 </dt> 606 607 608 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_dmax">set_dmax() (sans.pr.invertor.Invertor method)</a> 609 </dt> 610 611 612 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_err">set_err() (sans.pr.invertor.Invertor method)</a> 613 </dt> 614 615 616 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_has_bck">set_has_bck() (sans.pr.invertor.Invertor method)</a> 617 </dt> 618 619 620 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_qmax">set_qmax() (sans.pr.invertor.Invertor method)</a> 621 </dt> 622 623 </dl></td> 624 <td style="width: 33%" valign="top"><dl> 625 626 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_qmin">set_qmin() (sans.pr.invertor.Invertor method)</a> 627 </dt> 628 629 630 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_slit_height">set_slit_height() (sans.pr.invertor.Invertor method)</a> 631 </dt> 632 633 634 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_slit_width">set_slit_width() (sans.pr.invertor.Invertor method)</a> 635 </dt> 636 637 638 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_x">set_x() (sans.pr.invertor.Invertor method)</a> 639 </dt> 640 641 642 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.set_y">set_y() (sans.pr.invertor.Invertor method)</a> 643 </dt> 644 645 646 <dt><a href="api/num_term.html#sans.pr.num_term.Num_terms.sort_osc">sort_osc() (sans.pr.num_term.Num_terms method)</a> 647 </dt> 648 649 650 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.suggested_alpha">suggested_alpha (sans.pr.invertor.Invertor attribute)</a> 651 </dt> 652 653 </dl></td> 220 654 </tr></table> 221 655 … … 223 657 <table style="width: 100%" class="indextable genindextable"><tr> 224 658 <td style="width: 33%" valign="top"><dl> 225 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.to_file">to_file() (sans.pr.invertor.Invertor method)</a></dt> 226 </dl></td> 659 660 <dt><a href="api/invertor.html#sans.pr.invertor.Invertor.to_file">to_file() (sans.pr.invertor.Invertor method)</a> 661 </dt> 662 663 </dl></td> 227 664 </tr></table> 228 665 … … 240 677 <h3>Quick search</h3> 241 678 <form class="search" action="search.html" method="get"> 242 <input type="text" name="q" size="18"/>679 <input type="text" name="q" /> 243 680 <input type="submit" value="Go" /> 244 681 <input type="hidden" name="check_keywords" value="yes" /> … … 263 700 <a href="py-modindex.html" title="Python Module Index" 264 701 >modules</a> |</li> 265 <li><a href="index.html">pr_inversion v0.1.0 documentation</a> »</li>702 <li><a href="index.html">pr_inversion 0.1.0 documentation</a> »</li> 266 703 </ul> 267 704 </div> 268 705 <div class="footer"> 269 706 © Copyright 2010, sans group. 270 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1. 0.7.707 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1. 271 708 </div> 272 709 </body> -
pr_inversion/docs/sphinx/html/index.html
ra7c772e r8884996 4 4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5 5 6 6 7 <html xmlns="http://www.w3.org/1999/xhtml"> 7 8 <head> 8 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 9 10 10 <title>Welcome to pr_inversionâs documentation! — pr_inversion v0.1.0 documentation</title> 11 <title>Welcome to pr_inversionâs documentation! — pr_inversion 0.1.0 documentation</title> 12 11 13 <link rel="stylesheet" href="_static/default.css" type="text/css" /> 12 14 <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> 15 13 16 <script type="text/javascript"> 14 17 var DOCUMENTATION_OPTIONS = { … … 23 26 <script type="text/javascript" src="_static/underscore.js"></script> 24 27 <script type="text/javascript" src="_static/doctools.js"></script> 25 <link rel="top" title="pr_inversion v0.1.0 documentation" href="#" />28 <link rel="top" title="pr_inversion 0.1.0 documentation" href="#" /> 26 29 <link rel="next" title="Reference" href="api/index.html" /> 27 30 </head> … … 39 42 <a href="api/index.html" title="Reference" 40 43 accesskey="N">next</a> |</li> 41 <li><a href="#">pr_inversion v0.1.0 documentation</a> »</li>44 <li><a href="#">pr_inversion 0.1.0 documentation</a> »</li> 42 45 </ul> 43 46 </div> … … 96 99 <h3>Quick search</h3> 97 100 <form class="search" action="search.html" method="get"> 98 <input type="text" name="q" size="18"/>101 <input type="text" name="q" /> 99 102 <input type="submit" value="Go" /> 100 103 <input type="hidden" name="check_keywords" value="yes" /> … … 122 125 <a href="api/index.html" title="Reference" 123 126 >next</a> |</li> 124 <li><a href="#">pr_inversion v0.1.0 documentation</a> »</li>127 <li><a href="#">pr_inversion 0.1.0 documentation</a> »</li> 125 128 </ul> 126 129 </div> 127 130 <div class="footer"> 128 131 © Copyright 2010, sans group. 129 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1. 0.7.132 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1. 130 133 </div> 131 134 </body> -
pr_inversion/docs/sphinx/html/py-modindex.html
ra7c772e r8884996 4 4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5 5 6 6 7 <html xmlns="http://www.w3.org/1999/xhtml"> 7 8 <head> 8 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 9 10 10 <title>Python Module Index — pr_inversion v0.1.0 documentation</title> 11 <title>Python Module Index — pr_inversion 0.1.0 documentation</title> 12 11 13 <link rel="stylesheet" href="_static/default.css" type="text/css" /> 12 14 <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> 15 13 16 <script type="text/javascript"> 14 17 var DOCUMENTATION_OPTIONS = { … … 23 26 <script type="text/javascript" src="_static/underscore.js"></script> 24 27 <script type="text/javascript" src="_static/doctools.js"></script> 25 <link rel="top" title="pr_inversion v0.1.0 documentation" href="index.html" />28 <link rel="top" title="pr_inversion 0.1.0 documentation" href="index.html" /> 26 29 27 30 … … 38 41 <a href="#" title="Python Module Index" 39 42 >modules</a> |</li> 40 <li><a href="index.html">pr_inversion v0.1.0 documentation</a> »</li>43 <li><a href="index.html">pr_inversion 0.1.0 documentation</a> »</li> 41 44 </ul> 42 45 </div> … … 90 93 <h3>Quick search</h3> 91 94 <form class="search" action="search.html" method="get"> 92 <input type="text" name="q" size="18"/>95 <input type="text" name="q" /> 93 96 <input type="submit" value="Go" /> 94 97 <input type="hidden" name="check_keywords" value="yes" /> … … 113 116 <a href="#" title="Python Module Index" 114 117 >modules</a> |</li> 115 <li><a href="index.html">pr_inversion v0.1.0 documentation</a> »</li>118 <li><a href="index.html">pr_inversion 0.1.0 documentation</a> »</li> 116 119 </ul> 117 120 </div> 118 121 <div class="footer"> 119 122 © Copyright 2010, sans group. 120 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1. 0.7.123 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1. 121 124 </div> 122 125 </body> -
pr_inversion/docs/sphinx/html/search.html
ra7c772e r8884996 4 4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5 5 6 6 7 <html xmlns="http://www.w3.org/1999/xhtml"> 7 8 <head> 8 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 9 10 10 <title>Search — pr_inversion v0.1.0 documentation</title> 11 <title>Search — pr_inversion 0.1.0 documentation</title> 12 11 13 <link rel="stylesheet" href="_static/default.css" type="text/css" /> 12 14 <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> 15 13 16 <script type="text/javascript"> 14 17 var DOCUMENTATION_OPTIONS = { … … 24 27 <script type="text/javascript" src="_static/doctools.js"></script> 25 28 <script type="text/javascript" src="_static/searchtools.js"></script> 26 <link rel="top" title="pr_inversion v0.1.0 documentation" href="index.html" />29 <link rel="top" title="pr_inversion 0.1.0 documentation" href="index.html" /> 27 30 <script type="text/javascript"> 28 31 jQuery(function() { Search.loadIndex("searchindex.js"); }); … … 41 44 <a href="py-modindex.html" title="Python Module Index" 42 45 >modules</a> |</li> 43 <li><a href="index.html">pr_inversion v0.1.0 documentation</a> »</li>46 <li><a href="index.html">pr_inversion 0.1.0 documentation</a> »</li> 44 47 </ul> 45 48 </div> … … 92 95 <a href="py-modindex.html" title="Python Module Index" 93 96 >modules</a> |</li> 94 <li><a href="index.html">pr_inversion v0.1.0 documentation</a> »</li>97 <li><a href="index.html">pr_inversion 0.1.0 documentation</a> »</li> 95 98 </ul> 96 99 </div> 97 100 <div class="footer"> 98 101 © Copyright 2010, sans group. 99 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1. 0.7.102 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1. 100 103 </div> 101 104 </body> -
pr_inversion/docs/sphinx/html/searchindex.js
ra7c772e r8884996 1 Search.setIndex({objects:{"sans.pr. num_term":{load:[4,4,1],Num_terms:[4,3,1]},"sans.pr.invertor.Invertor":{get_pr_err:[2,2,1],get_qmin:[2,2,1],get_y:[2,2,1],get_err:[2,2,1],iq:[2,1,1],get_slit_height:[2,2,1],get_nerr:[2,2,1],get_pos_err:[2,2,1],basefunc_ft:[2,2,1],get_positive:[2,2,1],oscillations:[2,2,1],get_x:[2,2,1],set_has_bck:[2,2,1],get_dmax:[2,2,1],set_slit_width:[2,2,1],set_x:[2,2,1],set_y:[2,2,1],set_slit_height:[2,2,1],invert:[2,1,1],iq0:[2,2,1],is_valid:[2,2,1],rg:[2,2,1],to_file:[2,1,1],get_qmax:[2,2,1],set_qmax:[2,2,1],pr:[2,2,1],clone:[2,1,1],set_qmin:[2,2,1],estimate_alpha:[2,1,1],pr_residuals:[2,2,1],get_peaks:[2,2,1],pr_fit:[2,1,1],get_alpha:[2,2,1],get_has_bck:[2,2,1],from_file:[2,1,1],get_nx:[2,2,1],estimate_numterms:[2,1,1],set_alpha:[2,2,1],set_dmax:[2,2,1],iq_smeared:[2,2,1],invert_optimize:[2,1,1],lstsq:[2,1,1],residuals:[2,2,1],get_slit_width:[2,2,1],get_ny:[2,2,1],set_err:[2,2,1],pr_err:[2,1,1]},"sans.pr":{distance_explorer:[3,0,1],invertor:[2,0,1],num_term:[4,0,1]},"sans.pr.num_term.Num_terms":{get0_out:[4,1,1],median_osc:[4,1,1],ls_osc:[4,1,1],sort_osc:[4,1,1],is_odd:[4,1,1],compare_err:[4,1,1],num_terms:[4,1,1]},"sans.pr.invertor":{Invertor:[2,3,1],help:[2,4,1]},"sans.pr.distance_explorer":{DistExplorer:[3,3,1],Results:[3,3,1]}},terms:{isquit_func:[2,4],all:2,distanc:[2,3],help:2,ith:2,c_out:2,text:2,over:[2,3],merit:2,basefunc_ft:2,file:2,gyrat:2,follow:2,find:2,paramet:[2,3],cinvertor:2,fit:2,readabl:2,num_term:[0,1,4],param:2,svergun:2,to_fil:2,c_cov:2,input:2,save:2,arrai:2,set_qmax:2,futur:2,sum_i:2,estimate_numterm:2,them:2,good:2,"return":2,get:[2,3],get_nerr:2,pr_state:3,set_qmin:2,state:2,radiu:2,background:2,scatter:2,height:2,term:2,document:1,set_dmax:2,list:2,elaps:2,method:2,"try":2,provid:2,vector:2,lstsq:2,integr:2,contain:2,found:2,iq_smear:2,where:2,page:1,set:2,slower:2,some:2,direct:2,second:2,result:[2,3],get_x:2,arg:2,get_pos_err:2,our:2,stop:2,get_dmax:2,out:2,index:1,matrix:2,user:[2,3],abl:2,content:1,figur:2,version:2,select:2,row:2,reproduc:2,reg:2,matric:2,refer:[0,1,2],full:2,deriv:2,extend:2,written:2,gener:2,pose:2,coeffici:2,given:2,transofrm:2,nth:2,reason:2,base:[2,3],output:[2,3],releas:0,path:[2,4],pr_residu:2,standard:2,get_alpha:2,valid:2,valu:[2,3],sliceview:2,search:1,purpos:2,pr_fit:2,thread:2,smear:2,reg_term:2,length:2,distance_explor:[0,1,3],estim:2,get_slit_width:2,pick:3,fourier:2,pr_err:2,produc:2,intens:2,first:2,load:[2,4],deviat:2,rang:[2,3],get_qmin:2,point:[2,3],modul:[1,2,3],from_fil:2,number:[2,3],"2nd":2,residu:2,solv:2,get_pr_err:2,get_i:2,alpha:2,comput:2,distexplor:3,set_has_bck:2,assum:2,unit:2,san:[0,2,3,4],set_x:2,guess:2,from:2,set_i:2,invert:2,doubl:2,median_osc:4,transform:2,messag:2,i_ob:2,width:2,get_slit_height:2,much:2,call:2,compare_err:4,fraction:2,basic:2,sort_osc:4,get_has_bck:2,set_slit_width:2,store:2,ls_osc:4,"function":[2,3],linalg:2,oscil:2,estimate_alpha:2,flag:2,q_i:2,hold:3,leastsq:2,none:[2,4],look:2,err:2,pr_invers:1,whether:2,get_ni:2,work:2,maximum:2,scipi:2,invers:[2,3],abov:2,error:2,posit:2,otherwis:2,problem:2,get_nx:2,is_odd:4,observ:2,seri:3,distrubut:2,august:0,constant:2,iq0:2,evalu:2,get_err:2,d_max:3,n_r:2,set_slit_height:2,topic:2,sphere:2,slit:2,minimum:2,explor:3,tabl:1,need:2,onlin:2,check:2,fill:2,par:2,welcom:1,zero:2,minim:2,perform:2,allow:2,write:2,instanc:2,take:2,indic:1,test:2,get_peak:2,probabl:2,get0_out:4,distribut:2,optim:2,expans:2,clone:2,object:3,covari:2,get_posit:2,regular:2,time:2,peak:2,date:0,npt:2,data:2,"class":[2,3,4],squar:2,set_err:2,invert_optim:2,get_qmax:2,nfunc:2,set_alpha:2,entri:2,reliabl:2,inherit:2,doe:2,more:2,thi:2,choos:2,i_theo:2,invertor:[0,1,2,4],sigma:2,is_valid:2},objtypes:{"0":"py:module","1":"py:method","2":"py:attribute","3":"py:class","4":"py:function"},titles:["Reference","Welcome to pr_inversion’s documentation!","invertor","distance_explorer","num_term"],objnames:{"0":"Python module","1":"Python method","2":"Python attribute","3":"Python class","4":"Python function"},filenames:["api/index","index","api/invertor","api/distance_explorer","api/num_term"]})1 Search.setIndex({objects:{"sans.pr.distance_explorer.Results":{"__module__":[3,3,1,""],"__init__":[3,1,1,""]},"sans.pr.num_term":{load:[4,5,1,""],Num_terms:[4,4,1,""]},"sans.pr.invertor.Invertor":{"__module__":[2,3,1,""],get_pr_err:[2,1,1,""],get_x:[2,1,1,""],set_slit_height:[2,1,1,""],"__dict__":[2,3,1,""],get_err:[2,1,1,""],"_get_matrix":[2,1,1,""],from_file:[2,1,1,""],get_slit_height:[2,1,1,""],"__getattribute__":[2,3,1,""],"__class__":[2,3,1,""],estimate_numterms:[2,1,1,""],oscillations:[2,1,1,""],estimate_alpha:[2,1,1,""],rg:[2,1,1,""],get_positive:[2,1,1,""],get_pos_err:[2,1,1,""],get_qmin:[2,1,1,""],set_has_bck:[2,1,1,""],"__weakref__":[2,3,1,""],get_dmax:[2,1,1,""],"__init__":[2,1,1,""],out:[2,3,1,""],pr:[2,1,1,""],set_y:[2,1,1,""],"__setattr__":[2,1,1,""],"__reduce_ex__":[2,1,1,""],"__new__":[2,2,1,""],"__delattr__":[2,3,1,""],invert:[2,1,1,""],"__setstate__":[2,1,1,""],iq0:[2,1,1,""],"__getattr__":[2,1,1,""],"_get_reg_size":[2,1,1,""],iq:[2,1,1,""],is_valid:[2,1,1,""],get_y:[2,1,1,""],set_slit_width:[2,1,1,""],to_file:[2,1,1,""],get_qmax:[2,1,1,""],set_qmax:[2,1,1,""],"__repr__":[2,3,1,""],set_x:[2,1,1,""],"_get_invcov_matrix":[2,1,1,""],chi2:[2,3,1,""],get_nerr:[2,1,1,""],clone:[2,1,1,""],elapsed:[2,3,1,""],set_qmin:[2,1,1,""],nfunc:[2,3,1,""],"__str__":[2,3,1,""],pr_residuals:[2,1,1,""],get_peaks:[2,1,1,""],background:[2,3,1,""],pr_fit:[2,1,1,""],"__reduce__":[2,1,1,""],get_alpha:[2,1,1,""],get_has_bck:[2,1,1,""],info:[2,3,1,""],"_accept_q":[2,1,1,""],get_nx:[2,1,1,""],cov:[2,3,1,""],set_alpha:[2,1,1,""],set_dmax:[2,1,1,""],set_err:[2,1,1,""],iq_smeared:[2,1,1,""],invert_optimize:[2,1,1,""],lstsq:[2,1,1,""],residuals:[2,1,1,""],get_slit_width:[2,1,1,""],"__hash__":[2,3,1,""],get_ny:[2,1,1,""],suggested_alpha:[2,3,1,""],pr_err:[2,1,1,""],basefunc_ft:[2,1,1,""]},"sans.pr.distance_explorer.DistExplorer":{"__hash__":[3,3,1,""],"__module__":[3,3,1,""],"__reduce_ex__":[3,1,1,""],"__new__":[3,2,1,""],"__dict__":[3,3,1,""],"__reduce__":[3,1,1,""],"__str__":[3,3,1,""],"__getattribute__":[3,3,1,""],"__class__":[3,3,1,""],"__delattr__":[3,3,1,""],"__repr__":[3,3,1,""],"__setattr__":[3,3,1,""],"__call__":[3,1,1,""],"__weakref__":[3,3,1,""],"__init__":[3,1,1,""]},"sans.pr":{distance_explorer:[3,0,1,""],invertor:[2,0,1,""],num_term:[4,0,1,""]},"sans.pr.num_term.Num_terms":{get0_out:[4,1,1,""],"__module__":[4,3,1,""],median_osc:[4,1,1,""],num_terms:[4,1,1,""],"__init__":[4,1,1,""],sort_osc:[4,1,1,""],is_odd:[4,1,1,""],compare_err:[4,1,1,""],ls_osc:[4,1,1,""]},"sans.pr.invertor":{Invertor:[2,4,1,""],help:[2,5,1,""]},"sans.pr.distance_explorer":{DistExplorer:[3,4,1,""],Results:[3,4,1,""]}},terms:{explor:3,isquit_func:2,all:2,distanc:[2,3],help:2,ith:2,c_out:2,text:2,over:[2,3],merit:2,indic:1,observ:2,basefunc_ft:2,"__dict__":[2,3],follow:2,"__weakref__":[2,3],find:2,regular:2,paramet:[2,3],content:1,cinvertor:2,fit:2,much:2,seri:3,readabl:2,num_term:[0,1,4],param:2,version:2,to_fil:2,get_qmin:2,c_cov:2,"__call__":3,input:2,save:2,"__str__":[2,3],set_qmax:2,take:2,sum_i:2,estimate_numterm:2,them:2,good:2,"return":2,get:[2,3],from_fil:2,pr_state:3,repr:[2,3],initi:3,set_qmin:2,radiu:2,background:2,octob:0,"2nd":2,term:2,name:[2,3],set_dmax:2,pr_invers:1,list:[2,3],elaps:2,reg:2,"try":2,whether:2,vector:2,lstsq:2,integr:2,contain:2,found:2,peak:2,refer:[0,1,2,3],where:2,page:1,get_i:2,"__module__":[2,3,4],set:2,slower:2,some:2,direct:2,gyrat:2,second:2,"static":[2,3],result:[2,3],arg:2,get_pos_err:2,our:2,get_dmax:2,out:2,index:1,"__setattr__":[2,3],matrix:2,abl:2,"__getattr__":2,label:3,access:2,optim:2,figur:2,svergun:2,unit:2,"_get_reg_s":2,expans:2,"new":[2,3],row:2,reproduc:2,method:2,matric:2,iq_smear:2,full:2,hash:[2,3],deriv:2,extend:2,state:2,coeffici:2,gener:2,pose:2,weak:[2,3],guess:2,transofrm:2,nth:2,reason:2,base:[2,3],dmin:3,dictionari:3,output:[2,3],releas:0,path:2,pr_residu:2,standard:2,get_alpha:2,problem:2,valu:[2,3],sliceview:2,search:1,get_nx:2,thread:2,cov:2,smear:2,welcom:1,against:2,reg_term:2,"__hash__":[2,3],"__delattr__":[2,3],length:2,distance_explor:[0,1,3],estim:2,get_slit_width:2,pick:3,fourier:2,pr_err:2,produc:2,first:2,load:[2,4],info:2,rang:[2,3],get_x:2,point:[2,3],"_get_matrix":2,arrai:[2,3],get_nerr:2,number:[2,3],height:2,residu:2,solv:2,written:2,overwrit:2,npt:[2,3],constant:2,distexplor:3,set_has_bck:2,assum:2,dmax:3,select:2,san:[0,2,3,4],set_x:2,given:2,from:2,helper:[2,3],messag:2,width:2,invert:2,doubl:2,median_osc:4,transform:2,empti:3,i_ob:2,set_i:2,get_slit_height:2,deviat:2,call:2,compare_err:4,fraction:2,basic:2,sort_osc:4,instanc:2,type:[2,3],d_max:[2,3],store:2,ls_osc:4,"function":[2,3],get_err:2,linalg:2,"__getattribute__":[2,3],a_transpos:2,oscil:2,estimate_alpha:2,flag:2,"0x018f9b90":3,n_r:2,date:0,inv_cov:2,hold:3,"__class__":[2,3],leastsq:2,none:2,look:2,err:2,restor:2,provid:2,alia:[2,3],get_ni:2,work:2,get_pr_err:2,maximum:[2,3],defin:[2,3],minimum:[2,3],del:[2,3],invers:[2,3],str:[2,3],error:2,posit:2,otherwis:2,modul:[1,2,3],purpos:2,is_odd:4,scatter:2,suggested_alpha:2,distrubut:2,august:[],comput:[2,3],iq0:2,creat:3,dictproxi:[2,3],set_slit_width:2,tabl:1,"__reduce__":[2,3],q_i:2,set_slit_height:2,topic:2,sphere:2,slit:2,scipi:2,file:2,abov:2,need:2,onlin:2,check:2,"__init__":[2,3,4],fill:2,parent:2,par:2,"__reduce_ex__":[2,3],probabl:2,"__new__":[2,3],zero:2,minim:2,perform:2,"__setstate__":2,when:2,write:2,valid:2,futur:2,evalu:2,test:2,squar:2,get_peak:2,document:1,"__repr__":[2,3],get0_out:4,allow:2,"_get_invcov_matrix":2,chi2:2,stop:2,clone:2,object:[2,3],covari:2,get_posit:2,intens:2,time:2,user:[2,3],distribut:2,thi:2,pr_fit:2,alpha:2,choos:2,data:2,"class":[2,3,4],get_has_bck:2,"_accept_q":2,set_err:2,invert_optim:2,get_qmax:2,nfunc:2,set_alpha:2,entri:2,reliabl:2,least:2,"0x01ca22f0":2,inherit:2,doe:2,pickl:[2,3],more:2,q_min:2,attribut:2,subtyp:[2,3],i_theo:2,q_max:2,invertor:[0,1,2,3],sigma:2,is_valid:2},objtypes:{"0":"py:module","1":"py:method","2":"py:staticmethod","3":"py:attribute","4":"py:class","5":"py:function"},titles:["Reference","Welcome to pr_inversion’s documentation!","invertor","distance_explorer","num_term"],objnames:{"0":["py","module","Python module"],"1":["py","method","Python method"],"2":["py","staticmethod","Python static method"],"3":["py","attribute","Python attribute"],"4":["py","class","Python class"],"5":["py","function","Python function"]},filenames:["api/index","index","api/invertor","api/distance_explorer","api/num_term"]})
Note: See TracChangeset
for help on using the changeset viewer.