I have two arrays with the same dimension, lets name it x
and y
.
When I plot them, plt.plot(x,y)
the plot itself gives me back a continuous interpolation of my discrete data x
and y
.
How can I recover these interpolation from the plot?
Is there any other alternative to obtain more data in (x,y)
?