You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+36-2Lines changed: 36 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# PythonVRFT Library - Version 0.0.5
1
+
# PythonVRFT Library - Version 0.0.6
2
2
VRFT Adaptive Control Library written in Python. Aim of this library is to provide an implementation of the VRFT (Virtual Reference Feedback Tuning) algorithm.
3
3
4
4
You can find the package also at the following [link](https://pypi.org/project/pythonvrft/)
@@ -22,10 +22,44 @@ Other dependencies:
22
22
- Install from source: git clone this repo and from the root folder execute the command ```pip install .```
23
23
24
24
## Usage/Examples
25
-
You can import the library by typing ```import vrft``` in your code.
25
+
You can import the library by typing ```python import vrft``` in your code.
26
+
26
27
To learn how to use the library, check the examples located in the examples/ folder. At the moment there are examples available.
27
28
Check example3 to see usage of instrumental variables.
28
29
30
+
In general the code has the following structure
31
+
```python
32
+
from vrft import ExtendedTF # Discrete transfer function (inherits from the scipy.signal.dlti class)
33
+
from vrft import iddata # object used to store input/output data
0 commit comments