File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33Demo of 3D bar charts
44=====================
55
6- A basic demo of how to plot 3D bars with and without
7- shading.
8-
6+ A basic demo of how to plot 3D bars with and without shading.
97"""
108
119import numpy as np
Original file line number Diff line number Diff line change 1- '''
1+ """
22================
33Lorenz Attractor
44================
55
6- This is an example of plotting Edward Lorenz's 1963 `"Deterministic
7- Nonperiodic Flow"
8- <http://journals.ametsoc.org/doi/abs/10.1175/1520-0469%281963%29020%3C0130%3ADNF%3E2.0.CO%3B2>`_
9- in a 3-dimensional space using mplot3d.
6+ This is an example of plotting Edward Lorenz's 1963 `"Deterministic Nonperiodic
7+ Flow"`_ in a 3-dimensional space using mplot3d.
108
11- Note: Because this is a simple non-linear ODE, it would be more easily
12- done using SciPy's ode solver, but this approach depends only
13- upon NumPy.
14- '''
9+ .. _"Deterministic Nonperiodic Flow":
10+ http://journals.ametsoc.org/doi/abs/10.1175/1520-0469%281963%29020%3C0130%3ADNF%3E2.0.CO%3B2
11+
12+ .. note::
13+ Because this is a simple non-linear ODE, it would be more easily done using
14+ SciPy's ODE solver, but this approach depends only upon NumPy.
15+ """
1516
1617import numpy as np
1718import matplotlib .pyplot as plt
Original file line number Diff line number Diff line change 1- '''
1+ """
22==========================================
333D voxel / volumetric plot with rgb colors
44==========================================
55
6- Demonstrates using ``ax .voxels`` to visualize parts of a color space
7- '''
6+ Demonstrates using `Axes3D .voxels` to visualize parts of a color space.
7+ """
88
99import matplotlib .pyplot as plt
1010import numpy as np
You can’t perform that action at this time.
0 commit comments