So, this appears to not be so hard to do. If I am able to get it to work, that will be proof of how good the plugins, documentation, and other resources are out there. In roughly 1 hour, I have gone from nothing, to a functional blog that effortlessly publishes Ipython Notebooks. Truly amazing stuff.
In [1]:
import numpy as np
from matplotlib import pyplot as plt
In [2]:
x=np.linspace(0,50,200)
y1=np.sin(x)
y2=np.sin(3*x)
y3=3*np.sin(2*x)
In [7]:
plt.plot(x,y1)
plt.plot(x,y2)
plt.plot(x,y3)
Out[7]:
In [ ]: