mailr4809 - /branches/N_state_model/specific_fns/n_state_model.py


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

Header


Content

Posted by edward on January 17, 2008 - 10:57:
Author: bugman
Date: Thu Jan 17 10:57:19 2008
New Revision: 4809

URL: http://svn.gna.org/viewcvs/relax?rev=4809&view=rev
Log:
Bug fix for the N-state model assemble_param_vector() method.

The second last probability was missing from the parameter vector.


Modified:
    branches/N_state_model/specific_fns/n_state_model.py

Modified: branches/N_state_model/specific_fns/n_state_model.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/N_state_model/specific_fns/n_state_model.py?rev=4809&r1=4808&r2=4809&view=diff
==============================================================================
--- branches/N_state_model/specific_fns/n_state_model.py (original)
+++ branches/N_state_model/specific_fns/n_state_model.py Thu Jan 17 10:57:19 
2008
@@ -65,7 +65,7 @@
             gamma = cdp.gamma
 
         # The probabilities (exclude that of state N).
-        param_vector = probs[0:-2]
+        param_vector = probs[0:-1]
 
         # The Euler angles.
         for i in xrange(cdp.N):




Related Messages


Powered by MHonArc, Updated Thu Jan 17 11:20:08 2008