Changes

Jump to navigation Jump to search
== Bugs un-covered ==
* One data-point in spin 51, makes calculation go "nan", which makes relax go into infinity loop. '''This is an bug, and should be handled.'''
* The GUI is not updated when script 2 loaded, but only after spin deselection. There should be a "button" to force a "refresh" of the GUI.
* The "temp_state.bz" saved state can not be loaded in the GUI. Error message:
</source>
This probably due the above error
 
 
The spin 51 problem had nan in the original data.
<source lang="python">
import scipy.io
import numpy as np
a = "rates"
b = scipy.io.loadmat("/Users/tlinnet/Desktop/temp/Archive/exp_950/matrices/"+a+".mat")
c = b[a]
print np.isnan(np.min(c))
 
a = "errorbars_rate"
b = scipy.io.loadmat("/Users/tlinnet/Desktop/temp/Archive/exp_950/matrices/"+a+".mat")
c = b[a]
print np.isnan(np.min(c))
</source>

Navigation menu