increase heatmap range

This commit is contained in:
Christos Falas 2024-12-29 12:42:55 +00:00
parent 537da2c160
commit 232e90984f
No known key found for this signature in database

View File

@ -91,7 +91,7 @@ def add_data(
def make_heatmap():
fig = plt.figure()
ax = fig.add_axes([0, 0, 1, 1], polar=True)
r = np.linspace(0, 3e-8, 100) # Radius values
r = np.linspace(0, 1e-7, 100) # Radius values
theta = np.linspace(0, np.pi, 50) # Angle values
R, Theta = np.meshgrid(r, theta) # Create a 2D grid of r and theta