I have this point in (x,y) :
([27.266378342786531], [1.9505463431334713])
Now I want to use this point(I have many points,I want to know how can I use this point first ) to put it in the function below insted of x :(I have tried to make an array put i don't know how can I write it ??
def fun(x0, x, R, R0):
x0=3.10e-24
R= 3.15
R0= 7
return x0*np.exp(-np.maximum(x-R, 0)/R0)
x = np.array(???,???)
y= fun(x0, r, R, R0)
plt.plot(x, y)
plt.show()
thank you for your help