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: docs/src/tutorial.jl
+14-8
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,9 @@
1
1
# # [Overarching tutorial for DynamicalSystems.jl](@id tutorial)
2
2
3
-
#nb @doc DynamicalSystems
4
-
5
-
# This page serves as a short but to-the-point introduction to the **DynamicalSystems.jl** library. It outlines the core components, and how they establish an interface that is used by the rest of the library. It also provides a couple of usage examples to connect the various packages of the library together.
3
+
# This page serves as a short but to-the-point introduction to the **DynamicalSystems.jl**
4
+
# library. It outlines the core components, and how they establish an interface that
5
+
# is used by the rest of the library. It also provides a couple of usage examples
6
+
# to connect the various packages of the library together.
6
7
7
8
# Going through this tutorial should take you about 20 minutes.
8
9
@@ -13,10 +14,12 @@
13
14
# using Pkg; Pkg.add("DynamicalSystems")
14
15
# ```
15
16
16
-
# As discussed in the [contents](@ref contents) page, this installs several packages for the Julia language, that are all exported under a common name. To use them, simply do:
17
-
# ```julia
18
-
# using DynamicalSystems
19
-
# ```
17
+
# This installs several packages for the Julia language. These are the sub-modules/packages
18
+
# that comprise DynamicalSystems.jl, see [contents](@ref contents) for more.
19
+
# All of the functionality is brought into scope when doing:
20
+
21
+
using DynamicalSystems
22
+
20
23
# in your Julia session.
21
24
22
25
# ### Package versions used
@@ -26,9 +29,12 @@ import Pkg
26
29
#nb # Activate an environment in the folder containing the notebook
0 commit comments