-
Notifications
You must be signed in to change notification settings - Fork 4
Bug: Doc: clean up imports in doc #136
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
Changes from 9 commits
29bcd12
916f745
c3efe4a
4f72a89
ecead7a
82acd15
635f470
b59a53e
dc7cbb5
991a6fa
9bd70b7
9e86a32
b36d7e0
f47b1e5
91d5bdf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| spharpy.special | ||
| ----------------- | ||
| --------------- | ||
|
|
||
| .. automodule:: spharpy.special | ||
| :members: | ||
| :special-members: __init__ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm wondering why this was added, since currently there are no classes inside special |
||
| :undoc-members: | ||
| :show-inheritance: | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -93,6 +93,8 @@ def nm_to_fuma(n, m): | |
| and degree m, according to the FuMa (Furse-Malham) | ||
| Channel Ordering Convention. | ||
|
|
||
| See [#]_ for details. | ||
|
|
||
| Parameters | ||
| ---------- | ||
| n : integer, ndarray | ||
|
|
@@ -137,7 +139,9 @@ def fuma_to_nm(fuma): | |
| r""" | ||
| Calculate the spherical harmonic order n and degree m for a linear | ||
| coefficient index, according to the FuMa (Furse-Malham) | ||
| Channel Ordering Convention [#]_. | ||
| Channel Ordering Convention. | ||
|
|
||
| See [#]_ for details. | ||
|
|
||
| FuMa = WXYZ | RSTUV | KLMNOPQ | ||
| ACN = WYZX | VTRSU | QOMKLNP | ||
|
|
@@ -472,7 +476,7 @@ def spherical_harmonic_basis_gradient(n_max, coordinates, normalization="n3d", | |
|
|
||
|
|
||
| This implementation avoids singularities at the poles using identities | ||
| derived in [#]_. | ||
| derived in [#]_ and [#]_. | ||
|
||
|
|
||
|
|
||
| References | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not add blank spaces (if you use the editorconfig plugin it will remove trailing whitespaces automatically ;))