@@ -216,7 +216,7 @@ is done:
216216* Vector elements are zero padded to the required length. If you
217217 specify only a portion of the values for states or inputs, the
218218 remaining values are taken as zero. (If the final element in the
219- given vector is non-zero, a warning is issues .)
219+ given vector is non-zero, a warning is issued .)
220220
221221Similar processing is done for input time series, used for the
222222:func: `~control.input_output_response ` and
@@ -251,16 +251,16 @@ In this command, the states and the inputs are broadcast to the size of the
251251state and input vectors, respectively.
252252
253253If we want to linearize the closed loop system around a process state
254- ``x0 `` (with two elemenst ) and an estimator state ``0 `` (for both states),
254+ ``x0 `` (with two elements ) and an estimator state ``0 `` (for both states),
255255we can use the list processing feature::
256256
257- H = clsys.liniearize ([x0, 0], 0)
257+ H = clsys.linearize ([x0, 0], 0)
258258
259259Note that this also utilizes the zero-padding functionality, since the
260260second argument in the list ``[x0, 0] `` is a scalar and so the vector
261261``[x0, 0] `` only has three elements instead of the required four.
262262
263- To run an input/output simulation with a sinsoidal signal for the first
263+ To run an input/output simulation with a sinusoidal signal for the first
264264input, a constant for the second input, and no external disturbance, we can
265265use the list processing feature combined with time series broadcasting::
266266
0 commit comments