Created
July 21, 2013 03:48
-
-
Save dpsanders/6047387 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# <nbformat>3.0</nbformat> | |
# <codecell> | |
%matplotlib inline | |
%load_ext retina | |
# <codecell> | |
import matplotlib as mpl | |
import numpy as np | |
from matplotlib import pyplot as plt | |
# <codecell> | |
x = np.arange(-5, 5, 0.01) | |
y = x*x | |
plt.plot(x, y) | |
plt.show() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment