In [1]:
%matplotlib inline
from pylab import *
In [2]:
from pylab import *
In [4]:
from matplotlib.pyplot import figure, plot, xlabel, ylabel, title, show
In [5]:
x=linspace(0,5,10)
y=x**2
In [6]:
figure()
plot(x,y,'r')
xlabel('x')
ylabel('y')
title('title')
show()
In [ ]:
Markdown("""
a+b=c""")