-
Notifications
You must be signed in to change notification settings - Fork 19
/
CHANGES.txt
75 lines (67 loc) · 2.35 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
ChangeLog
============
v.1.0.1
-------
+ Restructured documentation, now has a function reference template.
+ State and Transfer conversion with static cols/rows bugs fixed.
+ minimal_realization and staircase bugs fixed
+ random model creation in continuous and discrete time is possible.
+ pole placement via ackermann
v.1.0.0
-------
+ First public release
+ Time domain plots and auto time sequence generation.
+ Unit tests are significantly improved(>80%)
+ Lots and lots of bug fixes.
+ Change the documentation theme to guzzle
+ Added first order hold discretization method
+ Removed FAQ from docs
v.0.1.1rc1
----------
+ Unified State, Transfer checks via arg_utils
+ Fixed transfer_to_state argument signature
+ Added discretization and undiscretization funcs
+ Separated the frequency domain computations and plotting
+ Rewritten the frequency grid generation
+ Fixed some of the unwrapping bugs
+ Added lqr, dlqr, lqry and dlqry with a single signature
+ Refactored minimal_realization related funcs.
+ Fixed hinf-norm bugs
+ Started time domain plots.
v0.1.1b5
--------
+ Requirement of NumPy is changed to 1.13 and above. Among others, we need
`__array_ufunc__` override mechanism for representation algebra. This
should not be an issue since noone seems to use this.
+ The representations can now be sliced with `G[:,1:3]` etc.
v0.1.1b4
--------
+ Sanitized the circular dependencies a bit more
+ minimal_realization is changed to accept models instead of A,B,C triplet
+ minimal_realization for Transfer uses the pole zero cancellation check
+ more housekeeping and bug fixes
+ added damping, natural frequency properties of poles
+ state_to_transfer does not return minimal realizations (per request)
v0.1.1b3
--------
+ More tests
+ bode, nyquist plots with matplotlib
+ Rewritten the transmission_zeros to improve accuracy
+ Removed the single file and replaced it with modular files.
+ Refactored Riccati solvers to SciPy official repo
+ Lyapunov solver safety net is moot. Created PR #6775 in SciPy
v0.1.1b2
--------
+ Added Riccati solvers
+ More documentation
+ Added safety net for lyapunov solvers in case there is no solution
v0.1.1b1
--------
+ Added Lyapunov solvers
+ Fixed many bugs
+ Removed block diag and switched to scipy version
v0.1.1a
-------
+ Initial versioning and packaging.
+ Adding documentation and Sphinx integration.
+ Basically everything there is.