mailr25785 - /trunk/pipe_control/error_analysis.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on September 12, 2014 - 14:04:
Author: bugman
Date: Fri Sep 12 14:04:13 2014
New Revision: 25785

URL: http://svn.gna.org/viewcvs/relax?rev=25785&view=rev
Log:
Modified pipe_control.error_analysis.covariance_matrix().

The call to the API covariance_matrix() method now has the model_info 
argument passed into it.  For
the relaxation curve-fitting, this allows the loop over spin systems to be 
skipped.


Modified:
    trunk/pipe_control/error_analysis.py

Modified: trunk/pipe_control/error_analysis.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/pipe_control/error_analysis.py?rev=25785&r1=25784&r2=25785&view=diff
==============================================================================
--- trunk/pipe_control/error_analysis.py        (original)
+++ trunk/pipe_control/error_analysis.py        Fri Sep 12 14:04:13 2014
@@ -54,7 +54,7 @@
     # Loop over the models.
     for model_info in api.model_loop():
         # Get the Jacobian and weighting matrix.
-        jacobian, weights = api.covariance_matrix(verbosity=verbosity)
+        jacobian, weights = api.covariance_matrix(model_info=model_info, 
verbosity=verbosity)
 
         # Calculate the covariance matrix.
         pcov = statistics.multifit_covar(J=jacobian, weights=weights)




Related Messages


Powered by MHonArc, Updated Fri Sep 12 14:20:02 2014