Skip to content

Commit 2bd2bf4

Browse files
committed
initial transfer fucntion section content
1 parent 76346d8 commit 2bd2bf4

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

control/xferfcn.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,16 @@ def __init__(self, *args, **kwargs):
306306
#: :meta hide-value:
307307
noutputs = 1
308308

309+
#: Numerator polynomial coefficients as a 2D array of 1D coefficents.
310+
#:
311+
#: :meta hide-value:
312+
num_array = None
313+
314+
#: Denominator polynomial coefficients as a 2D array of 1D coefficents.
315+
#:
316+
#: :meta hide-value:
317+
den_array = None
318+
309319
# Numerator and denominator as lists of lists of lists
310320
@property
311321
def num_list(self):

doc/xferfcn.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,45 @@ Frequency domain analysis and design
44
Transfer function properties
55
----------------------------
66

7+
The following basic attributes and methods are available for
8+
:class:`StateSpace` objects:
9+
10+
.. autosummary::
11+
12+
~StateSpace.num_array
13+
~StateSpace.den_array
14+
~StateSpace.shape
15+
~StateSpace.poles
16+
~StateSpace.zeros
17+
~StateSpace.dcgain
18+
~StateSpace.sample
19+
~StateSpace.returnScipySignalLTI
20+
21+
A complete list of attributes, methods, and properties is available in
22+
the :class:`~control.StateSpace` class documentation.
23+
24+
725
Frequency domain methods
826
------------------------
927

28+
1029
Input/output norms
1130
------------------
1231

32+
1333
Stability margins
1434
-----------------
1535

36+
1637
Frequency domain synthesis
1738
--------------------------
1839

40+
1941
Transfer functions from data
2042
----------------------------
2143

2244
.. todo:: rename to match FBS2e termincology
2345

46+
2447
Systems with time delays
2548
------------------------

0 commit comments

Comments
 (0)