Skip to content

Commit 2fb5f32

Browse files
committed
remove printout
1 parent 979a166 commit 2fb5f32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/catalyst_applications/dynamical_systems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ x_grid = 0.0:0.01:5.0
3333
y_grid = 0.0:0.01:10.0
3434
grid = (x_grid, y_grid)
3535
avr = AttractorsViaRecurrences(ds, grid)
36-
basins, attractors = basins_of_attraction(avr, grid)
36+
basins, attractors = basins_of_attraction(avr, grid; show_progress = false)
3737
nothing # hide
3838
```
3939
Here, `attractors` is a vector containing the attractors (in this case two fixed points, one at $(0.0,0.0)$ and one at $(4.5,6.0)$). Next, `basins` is a matrix of equal size to `grid`, where each value is an integer describing to which attractor's basin that state belong.

0 commit comments

Comments
 (0)