#! /usr/bin/env python
"""Perform some linear algebra and vector operations

Date: November 14, 2008

Author: Bob Wimmer

"""

from math import *   #This imports all math functions and constants
from scipy.integrate import odeint
from numpy import *
from numpy.linalg import inv,solve
import Gnuplot, Gnuplot.funcutils
import sys, time


""" Clean up the spaghetti code in linalg_v1.py and write functions which do the job """
