typo fix: I_yt -> T_yz

This commit is contained in:
2024-06-07 09:03:53 +02:00
parent 857fd5162a
commit 3e198cf710
+1 -1
View File
@@ -523,7 +523,7 @@ class PlotSelection:
return
elif arg == 'log':
vmin = 0
vmax = max(1, np.log(np.max(I_yt)+.1)/np.log(10)*1.05)
vmax = max(1, np.log(np.max(I_yz)+.1)/np.log(10)*1.05)
plt.pcolormesh(bins_y[:],bins_z[:],(np.log(I_yz+6e-1)/np.log(10)).T, cmap=cmap, vmin=vmin, vmax=vmax)
else:
plt.pcolormesh(bins_y[:],bins_z[:],I_yz.T, cmap=cmap)