| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
StateSpace
StateSpace type
This class implements the StateSpace type, based on the Matrix type. The state-space object uses 4 matrices, like:
>>> tf = TransferFunction([1], [1, 2, 3]) >>> a = StateSpace(tf) >>> print a State-Space model: . Matrix A: 0 1 -3 -2 . Matrix B: 0 1 . Matrix C: 1 0 . Matrix D: 0
|
|||
|
|||
|
|||
|
|||
|
|||
|
Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
Initialization of StateSpace object This method initialize a StateSpace object, using matrices or a TransferFunction object.
|
Initialization of StateSpace object using matrices This method initialize a StateSpace object, using 4 matrices. |
Initialization of StateSpace object using transfer function This method initialize a StateSpace object, using a TransferFunction object. |
String representation
This method returns the string representation of the state-space
models. For example:
State-Space model:
.
Matrix A:
0 1
-3 -2
.
Matrix B:
0
1
.
Matrix C:
1 0
.
Matrix D:
0
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu Nov 19 01:50:56 2009 | http://epydoc.sourceforge.net |