#!/usr/bin/env python # coding: utf-8 # ## A simple plot # In[1]: get_ipython().run_line_magic('matplotlib', 'inline') # In[2]: from numpy import * from matplotlib.pyplot import * # In[3]: x = linspace(0,2*pi) y = sin(x) plot(x,y) # In[ ]: