Skip to content
Snippets Groups Projects
Commit 377585ad authored by Andreas Freise's avatar Andreas Freise
Browse files

tweaking the tools.py again.

parent 362f549d
Branches
No related tags found
No related merge requests found
......@@ -18,6 +18,10 @@ formatter = matplotlib.ticker.EngFormatter(unit='', places=0)
formatter.ENG_PREFIXES[-6] = 'u'
def argmaxM(data):
return(np.unravel_index(np.argmax(data),data.shape))
def printPDF(fig, filename):
if filename !='' and filename != None:
if not filename.lower().endswith(('.pdf')):
......@@ -31,9 +35,10 @@ def plot_power_contour(x,y,z,xlabel, ylabel, clabel, title='', filename=''):
xm,ym=np.meshgrid(x,y)
extent = [x[0], x[-1], y[0], y[-1]]
mycm='YlOrRd_r'
mycm='hot'
#mycm='hot'
#im = ax.imshow(z,origin='lower',extent=extent,cmap=mycm, aspect='auto', interpolation='nearest')
im = ax.imshow(z,origin='lower',extent=extent,cmap=mycm, aspect='auto')
#im = ax.imshow(z,origin='lower',cmap=mycm, aspect='auto')
cb = fig.colorbar(im, format="%.4g")
#cb.set_clim(-1.0*zlimit, zlimit)
ax.autoscale(False)
......@@ -45,10 +50,12 @@ def plot_power_contour(x,y,z,xlabel, ylabel, clabel, title='', filename=''):
ax.xaxis.set_major_formatter(formatter)
ax.yaxis.set_major_formatter(formatter)
fig.canvas.manager.set_window_title(title)
plt.show()
plt.show(block=0)
printPDF(fig, filename)
def plot_error_contour(x,y,z,xlabel, ylabel, clabel, title='', filename=''):
global fig, ax, cb, ct, data
rc('font',**pp.font)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment