@@ -64,7 +64,7 @@ operations as well as the :func:`feedback`, :func:`parallel`, and
6464:ref: `function-ref `.
6565
6666The :func: `rss ` function can be used to create a random state space
67- system with a desired numbef or inputs, outputs, and states::
67+ system with a desired number or inputs, outputs, and states::
6868
6969 sys = ct.rss(states=4, outputs=1, inputs=1], strictly_proper=True)
7070
@@ -160,15 +160,15 @@ and `response.response` (for the complex response).
160160Multi-input, multi-output (MIMO) systems
161161----------------------------------------
162162
163- Multi-input, multi-output (MIMO) sytems are created by providing
163+ Multi-input, multi-output (MIMO) systems are created by providing
164164parameters of the appropriate dimensions to the relevant factory
165165function. For transfer functions, this is done by providing a 2D list
166166of numerator and denominator polynomials to the :func: `tf ` function,
167167e.g.::
168168
169169 sys = ct.tf(
170170 [[num11, num12], [num21, num22]],
171- [[den11, den12], [den21, denm22 ]])
171+ [[den11, den12], [den21, den22 ]])
172172
173173Similarly, MIMO frequency response data (FRD) systems are created by
174174providing the :func: `frd ` function with a 3D array of response
@@ -252,7 +252,7 @@ time system from a continuous time system. See
252252changing the value of `config.defaults['control.default_dt'] `.
253253
254254Functions operating on LTI systems will take into account whether a
255- system is continous time or discrete time when carrying out operations
255+ system is continuous time or discrete time when carrying out operations
256256that depend on this difference. For example, the :func: `rss ` function
257257will place all system eigenvalues within the unit circle when called
258258using `dt ` corresponding to a discrete time system::
@@ -271,7 +271,7 @@ Model conversion and reduction
271271==============================
272272
273273A variety of functions are available to manipulate LTI systems,
274- including functions for convering between state space and frequency
274+ including functions for converting between state space and frequency
275275domain, sampling systems in time and frequency domain, and creating
276276reduced order models.
277277
@@ -286,7 +286,7 @@ explicit conversions are not necessary, since functions designed to
286286operate on LTI systems will work on any subclass.
287287
288288To explicitly convert a state space system into a transfer function
289- represetation , the state space system can be passed as an argument to
289+ representation , the state space system can be passed as an argument to
290290the :func: `tf ` factory functions::
291291
292292 sys_ss = ct.rss(4, 2, 2, name='sys_ss')
@@ -315,7 +315,7 @@ Conversion of transfer functions to state space form is also possible::
315315Time sampling
316316-------------
317317
318- Continous time systems can be converted to discrete time systems using
318+ Continuous time systems can be converted to discrete time systems using
319319the :func: `sample_system ` function and specifying a sampling time::
320320
321321 >> csys = ct.rss(4, 2, 2, name='csys')
@@ -345,7 +345,7 @@ the :func:`sample_system` function and specifying a sampling time::
345345 dt = 0.1
346346
347347Note that the system name for the discrete time system is the name of
348- the origal system with the string '$sampled' appended.
348+ the original system with the string '$sampled' appended.
349349
350350Discrete time systems can also be created using the
351351:func: `StateSpace.sample ` or :func: `TransferFunction.sample ` methods
@@ -410,7 +410,7 @@ realization on the stable part, then reinserts the unstable modes.
410410
411411The :func: `minimal_realization ` function eliminates uncontrollable or
412412unobservable states in state space models or cancels pole-zero pairs
413- in transfer functions. The resuling output system has minimal order
413+ in transfer functions. The resulting output system has minimal order
414414and the same input/output response characteristics as the original
415415model system. Unlike the :func: `balanced_reduction ` function, the
416416:func: `minimal_realization ` eliminates all uncontrollable and/or
@@ -457,7 +457,7 @@ Information about an LTI system can be obtained using the Python
457457 D = [[-0. 0.]
458458 [ 0. 0.]]
459459
460- For a more compact represention , LTI objects can be evaluated directly
460+ For a more compact representation , LTI objects can be evaluated directly
461461to return a summary of the system input/output properties::
462462
463463 >>> sys = ct.rss(4, 2, 2, name='sys_2x2')
0 commit comments