File tree 3 files changed +14
-15
lines changed 3 files changed +14
-15
lines changed Original file line number Diff line number Diff line change 3
3
Demo of 3D bar charts
4
4
=====================
5
5
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.
9
7
"""
10
8
11
9
import numpy as np
Original file line number Diff line number Diff line change 1
- '''
1
+ """
2
2
================
3
3
Lorenz Attractor
4
4
================
5
5
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.
10
8
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
+ """
15
16
16
17
import numpy as np
17
18
import matplotlib .pyplot as plt
Original file line number Diff line number Diff line change 1
- '''
1
+ """
2
2
==========================================
3
3
3D voxel / volumetric plot with rgb colors
4
4
==========================================
5
5
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
+ """
8
8
9
9
import matplotlib .pyplot as plt
10
10
import numpy as np
You can’t perform that action at this time.
0 commit comments