-
Notifications
You must be signed in to change notification settings - Fork 0
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
11 changed files
with
550 additions
and
33 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
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 |
---|---|---|
|
@@ -7,4 +7,5 @@ API Contents | |
/api/nfct | ||
/api/nfst | ||
/api/nfsft | ||
/api/fsft | ||
/api/fastsum |
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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
``pyNFFT3.FSFT`` - FSFT Class | ||
================================ | ||
|
||
FSFT Methods | ||
------------- | ||
|
||
.. autoclass:: pyNFFT3.FSFT | ||
:members: | ||
:undoc-members: | ||
:member-order: bysource | ||
:exclude-members: f, fhat, __init__ | ||
|
||
FSFT Attributes | ||
---------------- | ||
|
||
.. attribute:: plan <fsft_plan> | ||
|
||
FSFT plan (C pointer) | ||
|
||
.. attribute:: N <int> | ||
|
||
The bandwidth :math:`N \epsilon N_0`. Must be a positive integer. | ||
|
||
.. attribute:: M <int> | ||
|
||
The number of nodes. Must be a positive integer. | ||
|
||
.. attribute:: flags <ctypes.c_uint32> | ||
|
||
The FSFT flags. | ||
|
||
.. attribute:: nfft_flags <ctypes.c_unit32> | ||
|
||
The NFFT flags. | ||
|
||
.. attribute:: nfft_cutoff <int> | ||
|
||
The NFFT cutoff. | ||
|
||
.. .. attribute:: x <numpy.ndarray> | ||
.. Float array for sampling nodes. | ||
.. attribute:: f <numpy.ndarray> | ||
|
||
Complex array for FSFT values or coefficients for the adjoint FSFT. | ||
|
||
.. attribute:: fhat <numpy.ndarray> | ||
|
||
Complex array of spherical Fourier coefficients for the FSFT or values for the adjoint FSFT. | ||
|
||
.. attribute:: init_done <boolean> | ||
|
||
Boolean to indicate if the FSFT plan is initialized. | ||
|
||
.. attribute:: finalized <boolean> | ||
|
||
Boolean to indicate if the FSFT plan is finalized. | ||
|
||
NFSFT Flags | ||
------------ | ||
.. autodata:: pyNFFT3.flags.NFSFT_NORMALIZED | ||
.. autodata:: pyNFFT3.flags.NFSFT_USE_NDFT | ||
.. autodata:: pyNFFT3.flags.NFSFT_USE_DPT | ||
.. autodata:: pyNFFT3.flags.NFSFT_MALLOC_X | ||
.. autodata:: pyNFFT3.flags.NFSFT_MALLOC_F_HAT | ||
.. autodata:: pyNFFT3.flags.NFSFT_MALLOC_F | ||
.. autodata:: pyNFFT3.flags.NFSFT_PRESERVE_F_HAT | ||
.. autodata:: pyNFFT3.flags.NFSFT_PRESERVE_X | ||
.. autodata:: pyNFFT3.flags.NFSFT_PRESERVE_F | ||
.. autodata:: pyNFFT3.flags.NFSFT_DESTROY_F_HAT | ||
.. autodata:: pyNFFT3.flags.NFSFT_DESTROY_X | ||
.. autodata:: pyNFFT3.flags.NFSFT_DESTROY_F | ||
.. autodata:: pyNFFT3.flags.NFSFT_NO_DIRECT_ALGORITHM | ||
.. autodata:: pyNFFT3.flags.NFSFT_NO_FAST_ALGORITHM | ||
.. autodata:: pyNFFT3.flags.NFSFT_ZERO_F_HAT | ||
.. autodata:: pyNFFT3.flags.NFSFT_EQUISPACED | ||
.. autodata:: pyNFFT3.flags.nfsft_default | ||
.. autodata:: pyNFFT3.flags.nfsft_nfft_default | ||
.. autodata:: pyNFFT3.flags.nfsft_default_nfft_cut_off | ||
.. autodata:: pyNFFT3.flags.nfsft_default_threshold |
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
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
Oops, something went wrong.