Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| matplotlib [2015/07/25 19:46] – created admin | matplotlib [2015/07/25 19:55] (current) – admin | ||
|---|---|---|---|
| Line 8: | Line 8: | ||
| - | Embedded matplotlib in a gui: | + | Embedded matplotlib in a gui. **pylab** is a way of importing pyplot and most of numpy into the namespace. |
| + | |||
| + | This is equivalent to from pylab import *. Note that it imports numpy as np and pyplot as plt. | ||
| + | |||
| + | ipython --pylab | ||
| + | |||
| + | |||
| + | http:// | ||
| - | ipython --pylab (equivalend to from pylab import *) | ||
| - | | ||
| - | __pylab is a way of importing pyplot and most of numpy into the namespace__ | ||
| - | |||