In [1]:
%matplotlib inline

from pylab import *

In [2]:
from pylab import *

Plot Example


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()


$$c = \sqrt{a^2 + b^2}$$

In [ ]:
Markdown("""
a+b=c""")