pic11
pic11

Reputation: 14943

Plot functions in Python

I am required to use Python for engineering project. Need to create many graphs, including surface plots. In the past I used Matlab for plotting and really liked it. I was wandering if there is a module/package/extension which bring similar capability into Python.

To be more specific, I need piloting for 2 different reasons.

  1. To understand how functions behave. Something quick and dirty would do it.

  2. Publication/presentation. Ability to add labels, legend, grid, customise colour, axis properties etc.

Upvotes: 1

Views: 1306

Answers (2)

senderle
senderle

Reputation: 150977

I suspect matplotlib.pyplot would be right up your alley.

Upvotes: 1

samplebias
samplebias

Reputation: 37909

Try matplotlib, it's pretty extensive and has a shell similar to MATLAB / Mathematica.

Upvotes: 2

Related Questions