Aqui começa o Ipython Notebook

Posso escrever em Markdown qualquer coisa, pôr figuras, links, $\LaTeX$, qualquer coisa.

Vou plotar um gráfico com o matplotlib.


In [1]:
%matplotlib inline

In [2]:
import matplotlib.pyplot as plt
import numpy as np

In [10]:
x = np.linspace(0, 3*np.pi, 500)
plt.plot(x, np.sin(x**2))
plt.title('$sen(x^2)$')


Out[10]:
<matplotlib.text.Text at 0x10af5e2d0>

In [ ]: