Copy the app link with current input parameters. They will be displayed in the URL.
If a user visits the app, it will run automatically, using the input parameters from the URL.
import numpy as np
import matplotlib.pyplot as plt
time = np.linspace(-10,10,200)
fx = np.sinc(time -3)+2
plt.plot(time,fx)
plt.title("Gráfica de la funcion seno cardinal")
plt.xlabel("time")
plt.ylabel("fx")
plt.grid(True)
plt.show()