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
Simplify handling of Δt in trajectory GUI: just use stop_at_dt = true in step! (#249)
* Some fixes for the notebook output
* simplify Dt handling in GUI by not remaking the system
* documentation improvement
* even more clarification
* give instructions on how to make smooth animations
Copy file name to clipboardexpand all lines: CHANGELOG.md
+9-2
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,16 @@
3
3
The package DynamicalSystems.jl has little actual code.
4
4
It mainly re-exports other packages. The source code contained here is only regarding graphical interactive applications for dynamical systems.
5
5
6
-
The changelog here therefore lists either major changes to the overarching DynamicalSystems.jl ecosystem, or major changes to plotting infastructure.
6
+
The changelog here therefore lists either major changes to the overarching DynamicalSystems.jl ecosystem, or major changes to plotting infrastructure.
7
7
8
-
The changelogs of individual subpackages are self-contained for each package.
8
+
The changelogs of individual sub-packages are self-contained for each package.
9
+
10
+
# v3.4
11
+
12
+
Some important fixes on the `interactive_trajectory` GUI:
13
+
14
+
- Changed the internal handling for continuous time systems. Now they are stepped for exactly `Δt` by giving `true` as third input to `step!`. This increases consistency with discrete systems by not altering the integration protocol.
15
+
- The documentation around the "run" button of the GUI has been clarified.
0 commit comments