views:

91

answers:

1

Is there any form of module in Python that will allow me to take mathematical equations for lines, arcs, and such, and graph them out on a plot? Basically a module that'll take my values and plot them on a graph with both an X and a Y coordinate (also the option of adding a Z coordinate would be nice too).

Something like this?

alt text

+2  A: 

Check out MatPlotLib, duplicate questions and related tags.

Pete