Loading sas_temper/output.py +1 −1 Original line number Diff line number Diff line Loading @@ -288,7 +288,7 @@ def outputFitCurve(conf, d, m, mnum, chisq): # plot the data and the fit curve. ax.errorbar(d.x, d.y, yerr=d.dy, marker='o') local_dy = np.zeros(len(m.x)) ax.errorbar(m.x, m.y, yerr=local_dy, 'r') ax.errorbar(m.x, m.y, yerr=local_dy, color='r') oname = str(conf.output)+"%02d.png" %(mnum) fig.savefig(oname,format='png') Loading Loading
sas_temper/output.py +1 −1 Original line number Diff line number Diff line Loading @@ -288,7 +288,7 @@ def outputFitCurve(conf, d, m, mnum, chisq): # plot the data and the fit curve. ax.errorbar(d.x, d.y, yerr=d.dy, marker='o') local_dy = np.zeros(len(m.x)) ax.errorbar(m.x, m.y, yerr=local_dy, 'r') ax.errorbar(m.x, m.y, yerr=local_dy, color='r') oname = str(conf.output)+"%02d.png" %(mnum) fig.savefig(oname,format='png') Loading