Home | Trees | Indices | Help |
|
---|
|
Data Types for Control Systems
This module implements some data types for the Control Systems. For example: Transfer Functions, State-Space models and others.
|
|||
Polynomial Polynomial type |
|||
Matrix Matrix type |
|||
TransferFunction TransferFunction type |
|||
StateSpace StateSpace type |
|
|||
|
|||
|
|
|||
__package__ =
|
|
Matrix of zeros This method returns a Matrix object filled by zeros. For example: >>> a = ZerosMatrix(2, 4) >>> print a 0 0 0 0 0 0 0 0 >>> >>> b = ZerosMatrix(2) >>> print b 0 0 0 0 >>> >>> type(b) <class 'controlsystems.types.Matrix'> |
Matrix Identity This method returns a Matrix object with zeros, and ones only on main diagonal. For example: >>> a = IdentityMatrix(4) >>> print a 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 >>> >>> type(a) <class 'controlsystems.types.Matrix'> |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Nov 19 01:50:56 2009 | http://epydoc.sourceforge.net |