├── Makefile ├── README.html ├── README.rst ├── dana.css ├── figures ├── bacteria.png ├── broadcast-1.1.png ├── broadcast-1.2.png ├── broadcast-1.3.png ├── broadcast-1.4.png ├── broadcast-2.1.png ├── broadcast-2.2.png ├── broadcast-2.3.png ├── broadcast-2.4.png ├── broadcast-3.1.png ├── broadcast-3.2.png ├── broadcast-3.3.png ├── broadcast-3.4.png ├── broadcast-4.1.png ├── broadcast-4.2.png ├── broadcast-4.3.png ├── broadcast-4.4.png ├── broadcast-4.5.png ├── create-arange-1.png ├── create-arange-2.png ├── create-arange-3.png ├── create-list-1.png ├── create-list-2.png ├── create-ones-1.png ├── create-ones-2.png ├── create-ones-3.png ├── create-uniform-1.png ├── create-uniform-2.png ├── create-uniform-3.png ├── create-zeros-1.png ├── create-zeros-2.png ├── create-zeros-3.png ├── diffusion.png ├── exercice-1.png ├── exercice-2.png ├── exercice-3.png ├── fingerprint.png ├── game-of-life-big.png ├── game-of-life.png ├── glider-00.png ├── glider-01.png ├── glider-02.png ├── glider-03.png ├── glider-04.png ├── glider-05.png ├── glider-06.png ├── glider-07.png ├── glider-08.png ├── neighbours-1.png ├── neighbours-2.png ├── neighbours-3.png ├── neighbours-4.png ├── neighbours-5.png ├── neighbours-6.png ├── neighbours-7.png ├── neighbours-8.png ├── neighbours-9.png ├── ops-maximum-after.png ├── ops-maximum-before.png ├── ops-minimum-after.png ├── ops-minimum-before.png ├── ops-sum-after.png ├── ops-sum-before.png ├── ops-where-1.png ├── ops-where-after.png ├── ops-where-before.png ├── reshape-Z-reshape(1,12).png ├── reshape-Z-reshape(12,1).png ├── reshape-Z-reshape(2,6).png ├── reshape-Z-reshape(4,3).png ├── reshape-Z-reshape(6,2).png ├── reshape-Z.png ├── slice-Z.png ├── slice-Z[...].png ├── slice-Z[0,:].png ├── slice-Z[1,1].png ├── slice-Z[2:,2:].png ├── slice-Z[2:4,2:4].png ├── slice-Z[3::2,3::2].png ├── slice-Z[:,0].png ├── slice-Z[:,::2].png ├── slice-Z[:-2,:-2].png ├── slice-Z[::2,::2].png ├── slice-Z[::2,:].png └── zebra.png ├── movies ├── bacteria.mp4 ├── fingerprint.mp4 └── zebra.mp4 ├── reset.css └── scripts ├── 3d.py ├── bacteria.png ├── broadcasts.py ├── creates.py ├── exercice-1.py ├── exercice-2.py ├── exercice-3.py ├── exercice-4.py ├── game-of-life-big.py ├── game-of-life-numpy.py ├── game-of-life-python.py ├── game-of-life.png ├── glider-trace.py ├── glider.py ├── gray-scott.py ├── neighbours.py ├── operations.py ├── reshapes.py ├── slices.py ├── test-anim.py ├── test.png └── test.py /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/README.html -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/README.rst -------------------------------------------------------------------------------- /dana.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/dana.css -------------------------------------------------------------------------------- /figures/bacteria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/bacteria.png -------------------------------------------------------------------------------- /figures/broadcast-1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-1.1.png -------------------------------------------------------------------------------- /figures/broadcast-1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-1.2.png -------------------------------------------------------------------------------- /figures/broadcast-1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-1.3.png -------------------------------------------------------------------------------- /figures/broadcast-1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-1.4.png -------------------------------------------------------------------------------- /figures/broadcast-2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-2.1.png -------------------------------------------------------------------------------- /figures/broadcast-2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-2.2.png -------------------------------------------------------------------------------- /figures/broadcast-2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-2.3.png -------------------------------------------------------------------------------- /figures/broadcast-2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-2.4.png -------------------------------------------------------------------------------- /figures/broadcast-3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-3.1.png -------------------------------------------------------------------------------- /figures/broadcast-3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-3.2.png -------------------------------------------------------------------------------- /figures/broadcast-3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-3.3.png -------------------------------------------------------------------------------- /figures/broadcast-3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-3.4.png -------------------------------------------------------------------------------- /figures/broadcast-4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-4.1.png -------------------------------------------------------------------------------- /figures/broadcast-4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-4.2.png -------------------------------------------------------------------------------- /figures/broadcast-4.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-4.3.png -------------------------------------------------------------------------------- /figures/broadcast-4.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-4.4.png -------------------------------------------------------------------------------- /figures/broadcast-4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/broadcast-4.5.png -------------------------------------------------------------------------------- /figures/create-arange-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-arange-1.png -------------------------------------------------------------------------------- /figures/create-arange-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-arange-2.png -------------------------------------------------------------------------------- /figures/create-arange-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-arange-3.png -------------------------------------------------------------------------------- /figures/create-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-list-1.png -------------------------------------------------------------------------------- /figures/create-list-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-list-2.png -------------------------------------------------------------------------------- /figures/create-ones-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-ones-1.png -------------------------------------------------------------------------------- /figures/create-ones-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-ones-2.png -------------------------------------------------------------------------------- /figures/create-ones-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-ones-3.png -------------------------------------------------------------------------------- /figures/create-uniform-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-uniform-1.png -------------------------------------------------------------------------------- /figures/create-uniform-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-uniform-2.png -------------------------------------------------------------------------------- /figures/create-uniform-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-uniform-3.png -------------------------------------------------------------------------------- /figures/create-zeros-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-zeros-1.png -------------------------------------------------------------------------------- /figures/create-zeros-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-zeros-2.png -------------------------------------------------------------------------------- /figures/create-zeros-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/create-zeros-3.png -------------------------------------------------------------------------------- /figures/diffusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/diffusion.png -------------------------------------------------------------------------------- /figures/exercice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/exercice-1.png -------------------------------------------------------------------------------- /figures/exercice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/exercice-2.png -------------------------------------------------------------------------------- /figures/exercice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/exercice-3.png -------------------------------------------------------------------------------- /figures/fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/fingerprint.png -------------------------------------------------------------------------------- /figures/game-of-life-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/game-of-life-big.png -------------------------------------------------------------------------------- /figures/game-of-life.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/game-of-life.png -------------------------------------------------------------------------------- /figures/glider-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-00.png -------------------------------------------------------------------------------- /figures/glider-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-01.png -------------------------------------------------------------------------------- /figures/glider-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-02.png -------------------------------------------------------------------------------- /figures/glider-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-03.png -------------------------------------------------------------------------------- /figures/glider-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-04.png -------------------------------------------------------------------------------- /figures/glider-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-05.png -------------------------------------------------------------------------------- /figures/glider-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-06.png -------------------------------------------------------------------------------- /figures/glider-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-07.png -------------------------------------------------------------------------------- /figures/glider-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/glider-08.png -------------------------------------------------------------------------------- /figures/neighbours-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-1.png -------------------------------------------------------------------------------- /figures/neighbours-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-2.png -------------------------------------------------------------------------------- /figures/neighbours-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-3.png -------------------------------------------------------------------------------- /figures/neighbours-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-4.png -------------------------------------------------------------------------------- /figures/neighbours-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-5.png -------------------------------------------------------------------------------- /figures/neighbours-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-6.png -------------------------------------------------------------------------------- /figures/neighbours-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-7.png -------------------------------------------------------------------------------- /figures/neighbours-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-8.png -------------------------------------------------------------------------------- /figures/neighbours-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/neighbours-9.png -------------------------------------------------------------------------------- /figures/ops-maximum-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-maximum-after.png -------------------------------------------------------------------------------- /figures/ops-maximum-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-maximum-before.png -------------------------------------------------------------------------------- /figures/ops-minimum-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-minimum-after.png -------------------------------------------------------------------------------- /figures/ops-minimum-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-minimum-before.png -------------------------------------------------------------------------------- /figures/ops-sum-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-sum-after.png -------------------------------------------------------------------------------- /figures/ops-sum-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-sum-before.png -------------------------------------------------------------------------------- /figures/ops-where-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-where-1.png -------------------------------------------------------------------------------- /figures/ops-where-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-where-after.png -------------------------------------------------------------------------------- /figures/ops-where-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/ops-where-before.png -------------------------------------------------------------------------------- /figures/reshape-Z-reshape(1,12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/reshape-Z-reshape(1,12).png -------------------------------------------------------------------------------- /figures/reshape-Z-reshape(12,1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/reshape-Z-reshape(12,1).png -------------------------------------------------------------------------------- /figures/reshape-Z-reshape(2,6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/reshape-Z-reshape(2,6).png -------------------------------------------------------------------------------- /figures/reshape-Z-reshape(4,3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/reshape-Z-reshape(4,3).png -------------------------------------------------------------------------------- /figures/reshape-Z-reshape(6,2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/reshape-Z-reshape(6,2).png -------------------------------------------------------------------------------- /figures/reshape-Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/reshape-Z.png -------------------------------------------------------------------------------- /figures/slice-Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z.png -------------------------------------------------------------------------------- /figures/slice-Z[...].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[...].png -------------------------------------------------------------------------------- /figures/slice-Z[0,:].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[0,:].png -------------------------------------------------------------------------------- /figures/slice-Z[1,1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[1,1].png -------------------------------------------------------------------------------- /figures/slice-Z[2:,2:].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[2:,2:].png -------------------------------------------------------------------------------- /figures/slice-Z[2:4,2:4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[2:4,2:4].png -------------------------------------------------------------------------------- /figures/slice-Z[3::2,3::2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[3::2,3::2].png -------------------------------------------------------------------------------- /figures/slice-Z[:,0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[:,0].png -------------------------------------------------------------------------------- /figures/slice-Z[:,::2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[:,::2].png -------------------------------------------------------------------------------- /figures/slice-Z[:-2,:-2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[:-2,:-2].png -------------------------------------------------------------------------------- /figures/slice-Z[::2,::2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[::2,::2].png -------------------------------------------------------------------------------- /figures/slice-Z[::2,:].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/slice-Z[::2,:].png -------------------------------------------------------------------------------- /figures/zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/figures/zebra.png -------------------------------------------------------------------------------- /movies/bacteria.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/movies/bacteria.mp4 -------------------------------------------------------------------------------- /movies/fingerprint.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/movies/fingerprint.mp4 -------------------------------------------------------------------------------- /movies/zebra.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/movies/zebra.mp4 -------------------------------------------------------------------------------- /reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/reset.css -------------------------------------------------------------------------------- /scripts/3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/3d.py -------------------------------------------------------------------------------- /scripts/bacteria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/bacteria.png -------------------------------------------------------------------------------- /scripts/broadcasts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/broadcasts.py -------------------------------------------------------------------------------- /scripts/creates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/creates.py -------------------------------------------------------------------------------- /scripts/exercice-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/exercice-1.py -------------------------------------------------------------------------------- /scripts/exercice-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/exercice-2.py -------------------------------------------------------------------------------- /scripts/exercice-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/exercice-3.py -------------------------------------------------------------------------------- /scripts/exercice-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/exercice-4.py -------------------------------------------------------------------------------- /scripts/game-of-life-big.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/game-of-life-big.py -------------------------------------------------------------------------------- /scripts/game-of-life-numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/game-of-life-numpy.py -------------------------------------------------------------------------------- /scripts/game-of-life-python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/game-of-life-python.py -------------------------------------------------------------------------------- /scripts/game-of-life.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/game-of-life.png -------------------------------------------------------------------------------- /scripts/glider-trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/glider-trace.py -------------------------------------------------------------------------------- /scripts/glider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/glider.py -------------------------------------------------------------------------------- /scripts/gray-scott.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/gray-scott.py -------------------------------------------------------------------------------- /scripts/neighbours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/neighbours.py -------------------------------------------------------------------------------- /scripts/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/operations.py -------------------------------------------------------------------------------- /scripts/reshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/reshapes.py -------------------------------------------------------------------------------- /scripts/slices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/slices.py -------------------------------------------------------------------------------- /scripts/test-anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/test-anim.py -------------------------------------------------------------------------------- /scripts/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/test.png -------------------------------------------------------------------------------- /scripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougier/numpy-tutorial/HEAD/scripts/test.py --------------------------------------------------------------------------------