Skip to content

Plotting Fractals #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 34 commits into from
Aug 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d5edc03
Create .gitkeep
MichaelRipa Jul 20, 2021
cfca15a
Image used in beginning of tutorial
MichaelRipa Jul 20, 2021
11ff9bd
New content
MichaelRipa Jul 20, 2021
c20a23d
Added "mpl_toolkits" to dependencies.
MichaelRipa Jul 20, 2021
2d37215
Updated filename
MichaelRipa Jul 20, 2021
f0da2c6
Added my content to README.
MichaelRipa Jul 20, 2021
dca6efb
Add content to README.
MichaelRipa Jul 20, 2021
270c55e
Rm .gitkeep.
rossbar Jul 21, 2021
76b91c6
Rm mpl_toolkits - installed with matplotlib.
rossbar Jul 21, 2021
0f719e9
Add fractals tutorial to toctree.
rossbar Jul 21, 2021
cb8db81
Add fractal plotting tutorial in md format.
MichaelRipa Jul 21, 2021
3aef371
Delete tutorial-plotting-fractals.md
MichaelRipa Jul 22, 2021
3fe0adb
Added links to documentation
MichaelRipa Jul 22, 2021
8172a3c
Fix heading levels.
rossbar Jul 25, 2021
72ab103
html img tag -> markdown for initial img.
rossbar Jul 25, 2021
5d81214
Temporary fix for CI dependency problem.
rossbar Jul 26, 2021
4665e0c
Update content/tutorial-plotting-fractals.md
MichaelRipa Jul 26, 2021
1dcec30
Update content/tutorial-plotting-fractals.md
MichaelRipa Jul 26, 2021
9d74eb3
Update content/tutorial-plotting-fractals.md
MichaelRipa Jul 26, 2021
fd96bdf
Update content/tutorial-plotting-fractals.md
MichaelRipa Jul 26, 2021
508055e
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
0d038d6
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
0568965
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
54e34db
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
3bbe127
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
5ad66fa
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
f59f270
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
d977815
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
cf2eddf
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 8, 2021
771c906
Update content/tutorial-plotting-fractals.md
MichaelRipa Aug 10, 2021
bde1f92
Update tutorial-plotting-fractals.md
MichaelRipa Aug 10, 2021
0da2671
Update tutorial-plotting-fractals.md
MichaelRipa Aug 10, 2021
4057f60
Fix ufunc capitalization and rm trailing whitespaces.
rossbar Aug 14, 2021
5162108
Typos and math typesetting.
rossbar Aug 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
command: |
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip wheel setuptools
pip install pip==21.1.1
pip install --upgrade wheel setuptools
pip install -r site/requirements.txt -r requirements.txt

- restore_cache:
Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ or navigate to any of the documents listed below and download it individually.

0. [Learn to write a NumPy tutorial](content/tutorial-style-guide.md): our style guide for writing tutorials.
1. [Tutorial: Linear algebra on n-dimensional arrays](content/tutorial-svd.md)
3. [Tutorial: Determining Moore's Law with real data in NumPy](content/mooreslaw-tutorial.md)
4. [Tutorial: Saving and sharing your NumPy arrays](content/save-load-arrays.md)
5. [Tutorial: NumPy deep learning on MNIST from scratch](content/tutorial-deep-learning-on-mnist.md)
6. [Tutorial: X-ray image processing](content/tutorial-x-ray-image-processing.md)
7. [Tutorial: NumPy deep reinforcement learning with Pong from pixels](content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md)
8. [Tutorial: Masked Arrays](content/tutorial-ma.md)
9. [Tutorial: Static Equilibrium](content/tutorial-static_equilibrium.md)
2. [Tutorial: Determining Moore's Law with real data in NumPy](content/mooreslaw-tutorial.md)
3. [Tutorial: Saving and sharing your NumPy arrays](content/save-load-arrays.md)
4. [Tutorial: NumPy deep learning on MNIST from scratch](content/tutorial-deep-learning-on-mnist.md)
5. [Tutorial: X-ray image processing](content/tutorial-x-ray-image-processing.md)
6. [Tutorial: NumPy deep reinforcement learning with Pong from pixels](content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md)
7. [Tutorial: Masked Arrays](content/tutorial-ma.md)
8. [Tutorial: Static Equilibrium](content/tutorial-static_equilibrium.md)
9. [Tutorial: Plotting Fractals](content/tutorial-plotting-fractals.ipynb)


## Contributing

Expand Down
Loading