Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -22,11 +22,12 @@ t=np.arange(t0,t_end+dt,dt)
|
|
22 |
|
23 |
# Subplot 1
|
24 |
fig2=plt.figure(figsize=(16,9),dpi=120,facecolor=(0.8,0.8,0.8))
|
|
|
25 |
ax0=fig2.add_subplot(gs[0,:],facecolor=(0.9,0.9,0.9))
|
26 |
box_object=dict(boxstyle='circle',fc=(0.1,0.9,0.9),ec='r',lw=10)
|
27 |
stopwatch0=ax0.text(1400,0.65,'',size=20,color='g',bbox=box_object)
|
28 |
|
29 |
-
|
30 |
|
31 |
def update_plot(num):
|
32 |
|
|
|
22 |
|
23 |
# Subplot 1
|
24 |
fig2=plt.figure(figsize=(16,9),dpi=120,facecolor=(0.8,0.8,0.8))
|
25 |
+
gs=gridspec.GridSpec(2,2)
|
26 |
ax0=fig2.add_subplot(gs[0,:],facecolor=(0.9,0.9,0.9))
|
27 |
box_object=dict(boxstyle='circle',fc=(0.1,0.9,0.9),ec='r',lw=10)
|
28 |
stopwatch0=ax0.text(1400,0.65,'',size=20,color='g',bbox=box_object)
|
29 |
|
30 |
+
|
31 |
|
32 |
def update_plot(num):
|
33 |
|