-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathmkdocs.yml
60 lines (60 loc) · 2.06 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
site_name: Mathematical Python
theme:
name: 'material'
palette:
primary: 'white'
accent: 'indigo'
repo_name: 'patrickwalls/mathematicalpython'
repo_url: 'https://github.com/patrickwalls/mathematicalpython'
extra:
analytics:
provider: google
property: G-700JX27T4T
markdown_extensions:
- toc:
toc_depth: 3
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js'
- 'js/highlight.js'
- 'js/extra.js'
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS_SVG'
extra_css:
- 'css/extra.css'
- 'css/googlecode.css'
nav:
- About: index.md
- Jupyter:
- Jupyter Notebook: jupyter/notebook.md
- Markdown: jupyter/markdown.md
- LaTeX: jupyter/latex.md
- Python:
- Numbers: python/numbers.md
- Variables: python/variables.md
- Sequences: python/sequences.md
- Functions: python/functions.md
- Logic: python/logic.md
- Loops: python/loops.md
- SciPy:
- NumPy: scipy/numpy.md
- Matplotlib: scipy/matplotlib.md
- Root Finding:
- Root Finding: root-finding/root-finding.md
- Bisection Method: root-finding/bisection.md
- Secant Method: root-finding/secant.md
- Newton's Method: root-finding/newton.md
- Numerical Integration:
- Definite Integrals: integration/integrals.md
- Riemann Sums: integration/riemann-sums.md
- Trapezoid Rule: integration/trapezoid-rule.md
- Simpson's Rule: integration/simpsons-rule.md
- Numerical Differentiation: differentiation/differentiation.md
- Differential Equations:
- First Order Equations: differential-equations/first-order.md
- Numerical Methods: differential-equations/numerical-methods.md
- Systems of Equations: differential-equations/systems.md
- Linear Algebra:
- Linear Algebra with SciPy: linear-algebra/linear-algebra-scipy.md
- Solving Linear Systems: linear-algebra/solving-linear-systems.md
- Eigenvalues and Eigenvectors: linear-algebra/eigenvalues-eigenvectors.md
- Applications: linear-algebra/applications.md
- Problems: problems/problems.md