Author: tlinnet Date: Sat Aug 30 01:05:44 2014 New Revision: 25469 URL: http://svn.gna.org/viewcvs/relax?rev=25469&view=rev Log: Fix to eksperimental class for fitting with different methods. After moving the funciont into class, 'self' should be added to the funcion.
task #7822(https://gna.org/task/index.php?7822): Implement user function to estimate R2eff and associated errors for exponential curve fitting. Modified: trunk/specific_analyses/relax_disp/estimate_r2eff.py Modified: trunk/specific_analyses/relax_disp/estimate_r2eff.py URL: http://svn.gna.org/viewcvs/relax/trunk/specific_analyses/relax_disp/estimate_r2eff.py?rev=25469&r1=25468&r2=25469&view=diff ============================================================================== --- trunk/specific_analyses/relax_disp/estimate_r2eff.py (original) +++ trunk/specific_analyses/relax_disp/estimate_r2eff.py Sat Aug 30 01:05:44 2014 @@ -386,7 +386,7 @@ return Kw - def func_exp_grad(params=None, times=None, values=None, errors=None): + def func_exp_grad(self, params=None, times=None, values=None, errors=None): """The gradient (Jacobian matrix) of func_exp for Co-variance calculation. @param params: The vector of parameter values. _______________________________________________ relax (http://www.nmr-relax.com) This is the relax-commits mailing list [email protected] To unsubscribe from this list, get a password reminder, or change your subscription options, visit the list information page at https://mail.gna.org/listinfo/relax-commits

