|
5 | 5 | # of representations (__repr__, __str__) for those systems that can be
|
6 | 6 | # used to compare different versions of python-control. It is mainly
|
7 | 7 | # intended for uses by developers to make sure there are no unexpected
|
8 |
| -# changes in representation formats, but also has some interest |
| 8 | +# changes in representation formats, but also has some interesting |
9 | 9 | # examples of different choices in system representation.
|
10 | 10 |
|
11 | 11 | import numpy as np
|
|
30 | 30 | sys_gtf = ct.tf([1], [1, 0])
|
31 | 31 | syslist += [sys_tf, sys_dtf, sys_gtf]
|
32 | 32 |
|
33 |
| -# MIMO transfer function (continous time only) |
| 33 | +# MIMO transfer function (continuous time only) |
34 | 34 | sys_mtf = ct.tf(
|
35 | 35 | [[sys_tf.num[0][0].tolist(), [0]], [[1, 0], [1, 0] ]],
|
36 | 36 | [[sys_tf.den[0][0].tolist(), [1]], [[1], [1, 2, 1]]],
|
37 | 37 | name='sys_mtf_zpk', display_format='zpk')
|
38 | 38 | syslist += [sys_mtf]
|
39 | 39 |
|
40 |
| -# Frequency response data (FRD) system (continous and discrete time) |
| 40 | +# Frequency response data (FRD) system (continuous and discrete time) |
41 | 41 | sys_frd = ct.frd(sys_tf, np.logspace(-1, 1, 5))
|
42 | 42 | sys_dfrd = ct.frd(sys_dtf, np.logspace(-1, 1, 5))
|
43 | 43 | sys_mfrd = ct.frd(sys_mtf, np.logspace(-1, 1, 5))
|
|
0 commit comments