mailr14459 - /branches/inversion-recovery/maths_fns/relax_fit.c


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

Header


Content

Posted by sebastien . morin on August 25, 2011 - 17:19:
Author: semor
Date: Thu Aug 25 17:19:49 2011
New Revision: 14459

URL: http://svn.gna.org/viewcvs/relax?rev=14459&view=rev
Log:
Maybe found a way to switch from one equation to the other.

This approach, not general, uses the number of parameters as a 
test to the use of either the 2-parameter equation 'exp_2param_neg' or 
the 3-parameter equation 'exp_3param_inv_neg'...

It is not clear if it works, but, at least, the code compiles...


Modified:
    branches/inversion-recovery/maths_fns/relax_fit.c

Modified: branches/inversion-recovery/maths_fns/relax_fit.c
URL: 
http://svn.gna.org/viewcvs/relax/branches/inversion-recovery/maths_fns/relax_fit.c?rev=14459&r1=14458&r2=14459&view=diff
==============================================================================
--- branches/inversion-recovery/maths_fns/relax_fit.c (original)
+++ branches/inversion-recovery/maths_fns/relax_fit.c Thu Aug 25 17:19:49 2011
@@ -124,9 +124,9 @@
     }
 
     /* Back calculated the peak intensities */
-    if(model == exp_2param_neg)
+    if(sizeof(num_params) == 2)
         exp_2param_neg(params, relax_times, back_calc, num_times);
-    if(model == exp_3param_inv_neg)
+    if(sizeof(num_params) == 3)
         exp_3param_inv_neg(params, relax_times, back_calc, num_times);
 
     /* Calculate and return the chi-squared value */
@@ -151,9 +151,9 @@
         return NULL;
 
     /* Back calculated the peak intensities */
-    if(model == exp_2param_neg)
+    if(sizeof(num_params) == 2)
         exp_2param_neg(params, relax_times, back_calc, num_times);
-    if(model == exp_3param_inv_neg)
+    if(sizeof(num_params) == 3)
         exp_3param_inv_neg(params, relax_times, back_calc, num_times);
 
 




Related Messages


Powered by MHonArc, Updated Thu Aug 25 18:00:02 2011