@@ -39,83 +39,86 @@ lecture_01 = [
39
39
" Variables" => " ./lecture_01/variables.md" ,
40
40
" Elementary functions" => " ./lecture_01/operators.md" ,
41
41
" Strings" => " ./lecture_01/strings.md" ,
42
- " Arrays" => " ./lecture_01/arrays.md" ,
43
- " Data structures" => " ./lecture_01/data_structures.md" ,
44
42
]
45
43
46
44
lecture_02 = [
47
- " Conditional evaluations" => " ./lecture_02/conditions.md" ,
48
- " Loops and iterators" => " ./lecture_02/loops.md" ,
49
- " Soft local scope" => " ./lecture_02/scope.md" ,
50
- " Exercises" => " ./lecture_02/exercises.md" ,
45
+ " Arrays" => " ./lecture_02/arrays.md" ,
46
+ " Data structures" => " ./lecture_02/data_structures.md" ,
51
47
]
52
48
53
49
lecture_03 = [
54
- " Functions" => " ./lecture_03/functions.md" ,
55
- " Methods" => " ./lecture_03/methods.md" ,
56
- " Scope of variables" => " ./lecture_03/scope.md" ,
57
- " Exception handling" => " ./lecture_03/exceptions.md" ,
50
+ " Conditional evaluations" => " ./lecture_03/conditions.md" ,
51
+ " Loops and iterators" => " ./lecture_03/loops.md" ,
52
+ " Soft local scope" => " ./lecture_03/scope.md" ,
58
53
" Exercises" => " ./lecture_03/exercises.md" ,
59
54
]
60
55
61
56
lecture_04 = [
62
- " Standard library " => " ./lecture_04/standardlibrary .md" ,
63
- " Plots.jl " => " ./lecture_04/Plots .md" ,
64
- " DataFrames.jl " => " ./lecture_04/DataFrames .md" ,
65
- " Other useful packages " => " ./lecture_04/otherpackages .md" ,
66
- " Interaction with other languages " => " ./lecture_04/interaction .md" ,
57
+ " Functions " => " ./lecture_04/functions .md" ,
58
+ " Methods " => " ./lecture_04/methods .md" ,
59
+ " Scope of variables " => " ./lecture_04/scope .md" ,
60
+ " Exception handling " => " ./lecture_04/exceptions .md" ,
61
+ " Exercises " => " ./lecture_04/exercises .md" ,
67
62
]
68
63
69
64
lecture_05 = [
70
- " Abstract and composite types" => " ./lecture_05/compositetypes.md" ,
71
- " Generic programming" => " ./lecture_05/currencies.md" ,
65
+ " Standard library" => " ./lecture_05/standardlibrary.md" ,
66
+ " Plots.jl" => " ./lecture_05/Plots.md" ,
67
+ " DataFrames.jl" => " ./lecture_05/DataFrames.md" ,
68
+ " Other useful packages" => " ./lecture_05/otherpackages.md" ,
69
+ " Interaction with other languages" => " ./lecture_05/interaction.md" ,
72
70
]
73
71
74
72
lecture_06 = [
75
- " Files and modules" => " ./lecture_06/modules.md" ,
76
- " Package manager" => " ./lecture_06/pkg.md" ,
77
- " Package development" => " ./lecture_06/develop.md" ,
73
+ " Abstract and composite types" => " ./lecture_06/compositetypes.md" ,
74
+ " Generic programming" => " ./lecture_06/currencies.md" ,
75
+ ]
76
+
77
+ lecture_07 = [
78
+ " Files and modules" => " ./lecture_07/modules.md" ,
79
+ " Package manager" => " ./lecture_07/pkg.md" ,
80
+ " Package development" => " ./lecture_07/develop.md" ,
78
81
]
79
82
80
83
finalproject = joinpath .(" ./final_project/" , [
81
84
" homeworks.md" ,
82
85
" project.md" ,
83
86
])
84
87
85
- lecture_07 = joinpath .(" ./lecture_07 /" , [
88
+ lecture_08 = joinpath .(" ./lecture_08 /" , [
86
89
" theory.md" ,
87
90
" unconstrained.md" ,
88
91
" constrained.md" ,
89
92
" exercises.md" ,
90
93
])
91
94
92
- lecture_08 = joinpath .(" ./lecture_08 /" , [
95
+ lecture_09 = joinpath .(" ./lecture_09 /" , [
93
96
" theory.md" ,
94
97
" linear.md" ,
95
98
" logistic.md" ,
96
99
" exercises.md" ,
97
100
])
98
101
99
- lecture_09 = joinpath .(" ./lecture_09 /" , [
102
+ lecture_10 = joinpath .(" ./lecture_10 /" , [
100
103
" theory.md" ,
101
104
" nn.md" ,
102
105
" exercises.md" ,
103
106
])
104
107
105
- lecture_10 = joinpath .(" ./lecture_10 /" , [
108
+ lecture_11 = joinpath .(" ./lecture_11 /" , [
106
109
" theory.md" ,
107
110
" iris.md" ,
108
111
" nn.md" ,
109
112
" exercises.md" ,
110
113
])
111
114
112
- lecture_11 = joinpath .(" ./lecture_11 /" , [
115
+ lecture_12 = joinpath .(" ./lecture_12 /" , [
113
116
" sparse.md" ,
114
117
" monte.md" ,
115
118
" glm.md" ,
116
119
])
117
120
118
- lecture_12 = joinpath .(" ./lecture_12 /" , [
121
+ lecture_13 = joinpath .(" ./lecture_13 /" , [
119
122
" theory.md" ,
120
123
" ode.md" ,
121
124
" diff_eq.md" ,
@@ -136,18 +139,19 @@ makedocs(;
136
139
" Why Julia?" => " why.md" ,
137
140
" Installation" => installation,
138
141
" 1: Variables and basic operators" => lecture_01,
139
- " 2: Control flow" => lecture_02,
140
- " 3: Functions and methods" => lecture_03,
141
- " 4: Packages" => lecture_04,
142
- " 5: Type system and generic programming" => lecture_05,
143
- " 6: Code organization" => lecture_06,
142
+ " 2: Data structures" => lecture_02,
143
+ " 3: Control flow" => lecture_03,
144
+ " 4: Functions and methods" => lecture_04,
145
+ " 5: Packages" => lecture_05,
146
+ " 6: Type system and generic programming" => lecture_06,
147
+ " 7: Code organization" => lecture_07,
144
148
" Course requirements" => finalproject,
145
- " 7 : Optimization" => lecture_07 ,
146
- " 8 : Regression and classification" => lecture_08 ,
147
- " 9 : Neural networks I." => lecture_09 ,
148
- " 10 : Neural networks II." => lecture_10 ,
149
- " 11 : Statistics" => lecture_11 ,
150
- " 12 : Ordinary differential equations" => lecture_12 ,
149
+ " 8 : Optimization" => lecture_08 ,
150
+ " 9 : Regression and classification" => lecture_09 ,
151
+ " 10 : Neural networks I." => lecture_10 ,
152
+ " 11 : Neural networks II." => lecture_11 ,
153
+ " 12 : Statistics" => lecture_12 ,
154
+ " 13 : Ordinary differential equations" => lecture_13 ,
151
155
],
152
156
)
153
157
0 commit comments