From e2aa1b8e27f791ee6bc138ed1a54c1e417257754 Mon Sep 17 00:00:00 2001 From: Mirko Date: Sun, 24 Apr 2022 20:26:29 +0200 Subject: [PATCH] Update rep.rst fixed a typo and image import --- docs/rep.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/rep.rst b/docs/rep.rst index d2658ca..2db2fdc 100644 --- a/docs/rep.rst +++ b/docs/rep.rst @@ -9,7 +9,7 @@ Transfer Functions A Transfer Function is the Laplace Transform of the ratio of output to input, and are mathematically described as: -.. figure:: /shared_images/tf.png +.. figure:: /shared_images/tf.PNG :align: center To define a system in terms of a Transfer Function, use the `TransferFunction` class. @@ -31,8 +31,8 @@ Space State models are mathamatically described as: To define a system as Space State model, use the `StateSpace` class. :: >>> import control - >>> s = control.StateSpce(A,B,C,D) + >>> s = control.StateSpace(A,B,C,D) Here, A,B,C,D are ndarrays. -.. note:: A system can be defined by any of the two representations above. If a particular method is needed but is not provided for the given system representation (which is unlikely), you can convert the system model to the desired representation using the `convert2TF()` or `convert2SS()` method. \ No newline at end of file +.. note:: A system can be defined by any of the two representations above. If a particular method is needed but is not provided for the given system representation (which is unlikely), you can convert the system model to the desired representation using the `convert2TF()` or `convert2SS()` method.