In [2]:
from sympy import *; init_session()


IPython console for SymPy 0.7.7.dev (Python 2.7.10-64-bit) (ground types: python)

These commands were executed:
>>> from __future__ import division
>>> from sympy import *
>>> x, y, z, t = symbols('x y z t')
>>> k, m, n = symbols('k m n', integer=True)
>>> f, g, h = symbols('f g h', cls=Function)
>>> init_printing()

Documentation can be found at http://docs.sympy.org/dev

In [3]:
from applpy import *

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

In [13]:
x = np.linspace(0,2*np.pi,100)
y1 = np.sin(x)
y2 = np.sin(3*x)
plt.plot(x,y1,'r',x,y2,'r')
plt.plot([1,2,3],'ro')
#plt.fill(x,y1,'b',x,y2,'b')
plt.show()

In [6]:
plt.show()

In [ ]: