Control Systems Library for Python

From Murray Wiki
Revision as of 17:19, 23 May 2009 by Murray (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

This page collects some notes on a control systems library for Python.

Architecture

Installation instructions

Here's what I had to do to get all of this to work

  1. Install SciPy - I did this using fink. Have to use the main/unstable tree.
  2. Install matplotlib - Need this for plotting
  3. Install ipython - interactive python interface

Small snipped of code for testing if everything is installed

import from scipy *
import from matlibplot *
a = zeros(1000)
a[:100]=1
b = fft(a)
plot(abs(b))
show()

Related documentation

Python documentation