@@ -31,8 +31,8 @@ import Pkg
31
31
32
32
# nb # Activate an environment in the folder containing the notebook
33
33
# nb Pkg.activate(dirname(@__DIR__))
34
- # nb Pkg.add(["DynamicalSystems", "CairoMakie", "GLMakie", " OrdinaryDiffEq", "BenchmarkTools"])
35
- Pkg. status ([" DynamicalSystems" , " CairoMakie" , " GLMakie " , " OrdinaryDiffEq" , " BenchmarkTools" ]; mode = Pkg. PKGMODE_MANIFEST)
34
+ # nb Pkg.add(["DynamicalSystems", "CairoMakie", "OrdinaryDiffEq", "BenchmarkTools"])
35
+ Pkg. status ([" DynamicalSystems" , " CairoMakie" , " OrdinaryDiffEq" , " BenchmarkTools" ]; mode = Pkg. PKGMODE_MANIFEST)
36
36
37
37
# nb # ## **DynamicalSystems.jl** summary
38
38
@@ -359,7 +359,7 @@ xg = yg = range(-1, 1; length = 101)
359
359
360
360
sampler, _ = statespace_sampler ((xg, yg))
361
361
362
- fs = basins_fractions (mapper, sampler)
362
+ fs = basins_fractions (mapper, sampler; show_progress = false )
363
363
364
364
# and we can see the stored "attractors"
365
365
@@ -509,7 +509,7 @@ pex, sey
509
509
510
510
# Alternatively, you could use [`FractalDimensions`](@ref) to get the fractal dimensions of the chaotic attractor of the henon map using the Grassberger-Procaccia algorithm:
511
511
512
- grassberger_proccacia_dim (X)
512
+ grassberger_proccacia_dim (X; show_progress = false )
513
513
514
514
# Or, you could obtain a recurrence matrix of a state space set with [`RecurrenceAnalysis`](@ref)
515
515
@@ -548,15 +548,15 @@ using Random: Xoshiro
548
548
rng = Xoshiro (1234 )
549
549
x .+ = randn (rng, length (x))/ 100
550
550
# # compute noise-contaminated fractal dim.
551
- Δ_orig = generalized_dim (embed (x, 2 , 1 ))
551
+ Δ_orig = generalized_dim (embed (x, 2 , 1 ); show_progress = false )
552
552
553
553
# And we do the surrogate test
554
554
555
555
surrogate_method = RandomFourier ()
556
556
sgen = surrogenerator (x, surrogate_method, rng)
557
557
Δ_surr = map (1 : 1000 ) do i
558
558
s = sgen ()
559
- generalized_dim (embed (s, 2 , 1 ))
559
+ generalized_dim (embed (s, 2 , 1 ); show_progress = false )
560
560
end
561
561
562
562
# and visualize the test result
0 commit comments