-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
Routines for averaging 2D and 3D images | ||
in polar and spherical coordinates. | ||
Adapted from aziavg.py in https://github.com/davidgrier/dgmath/. | ||
.. moduleauthor:: Michael O'Brien <[email protected]> | ||
""" | ||
|
@@ -15,8 +17,6 @@ def radialavg(data, center=None, dphi=None, | |
""" | ||
Average data over bins of radial contours. | ||
Adapted from aziavg.py in https://github.com/davidgrier/dgmath/ | ||
Parameters | ||
---------- | ||
data : `np.ndarray` | ||
|
@@ -140,8 +140,6 @@ def aziavg(data, center=None, rad=None, | |
''' | ||
Average data over bins of azimuthal contours. | ||
Extension of aziavg.py in https://github.com/davidgrier/dgmath/ | ||
Parameters | ||
---------- | ||
data : `np.ndarray` | ||
|
@@ -247,8 +245,6 @@ def shellavg(data, center=None, rad=None, | |
""" | ||
Average data over bins of spherical shells. | ||
Adapted from aziavg.py in https://github.com/davidgrier/dgmath/ | ||
Parameters | ||
---------- | ||
data : `np.ndarray` | ||
|