I'm plotting a curve from some data points:
points = [[0.0, 0.0], [1, 3], [3, 5]]
... and I want it to reach, say, y = 10 as x goes to infinity. In other words, the extra "point" to append would be: [float('inf'), 10]
Is there a way to tell matplotlib
to plot the asymptotic behaviour of this last part of the curve?
Matplotlib disregards float('info')
, so I guess there should be another way to do this.