increase heatmap range
This commit is contained in:
parent
537da2c160
commit
232e90984f
@ -91,7 +91,7 @@ def add_data(
|
|||||||
def make_heatmap():
|
def make_heatmap():
|
||||||
fig = plt.figure()
|
fig = plt.figure()
|
||||||
ax = fig.add_axes([0, 0, 1, 1], polar=True)
|
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
|
theta = np.linspace(0, np.pi, 50) # Angle values
|
||||||
R, Theta = np.meshgrid(r, theta) # Create a 2D grid of r and theta
|
R, Theta = np.meshgrid(r, theta) # Create a 2D grid of r and theta
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user