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

x = np.linspace(0,1)
y = np.sqrt(x)
plt.plot(x,y,'bo')
Out[1]:
[<matplotlib.lines.Line2D at 0x104b69fd0>]

Hello World

This is a quick notebook hacked together so that I could figure out how to plug iPython notebooks into Pelican. Some Markdown, a couple of Python commands, and poof, you've got a whizbang blog system.

$$ a x^2 + b x + c = 0 $$
In [ ]: