Re: [Matplotlib-users] Interpolation between points during plot()

2010-02-22 Thread Michael Droettboom
The drawing between the points is done using the regular "line drawing" commands of the backend. So there isn't really any low-level control over how the line between points is drawn. As a workaround, however, you can interpolate the data yourself and just pass more points to matplotlib. You

[Matplotlib-users] Interpolation between points during plot()

2010-02-12 Thread T J
Hi, When plotting, plot(x, y, marker="-") and its similar markers, what functionality in MPL is responsible for interpolating between the points? My naive guess is that interpolation is done in "display" coordinates since everything looks nice even when zooming in.I inquire because I'd