Skip to content
Snippets Groups Projects
Commit 5b674528 authored by Theo Steininger's avatar Theo Steininger
Browse files

Docstring refactoring

parent 63af9bd5
No related branches found
No related tags found
1 merge request!99Tests operators
Pipeline #
......@@ -249,8 +249,8 @@ class LinearOperator(Loggable, object):
raise
return y
def inverse_adjoint_times(self, x, spaces=None, **kwargs):
return self.adjoint_inverse_times(x, spaces, **kwargs)
def inverse_adjoint_times(self, x, spaces=None):
return self.adjoint_inverse_times(x, spaces)
def _times(self, x, spaces):
raise NotImplementedError(
......
......@@ -48,25 +48,25 @@ class RGSpace(Space):
NIFTY subclass for spaces of regular Cartesian grids.
Parameters
----------
shape : {int, numpy.ndarray}
Number of grid points or numbers of gridpoints along each axis.
zerocenter : {bool, numpy.ndarray}, *optional*
Whether x==0 (or k==0, respectively) is located in the center of
the grid (or the center of each axis speparately) or not.
Parameters
----------
shape : {int, numpy.ndarray}
Number of grid points or numbers of gridpoints along each axis.
zerocenter : {bool, numpy.ndarray}, *optional*
Whether x==0 (or k==0, respectively) is located in the center of
the grid (or the center of each axis speparately) or not.
(default: False).
distances : {float, numpy.ndarray}, *optional*
Distance between two grid points along each axis
(default: None).
If distances==None:
if harmonic==True, all distances will be set to 1
if harmonic==False, the distance along each axis will be
set to the inverse of the number of points along that
axis.
harmonic : bool, *optional*
Whether the space represents a grid in position or harmonic space.
(default: False).
distances : {float, numpy.ndarray}, *optional*
Distance between two grid points along each axis
(default: None).
If distances==None:
if harmonic==True, all distances will be set to 1
if harmonic==False, the distance along each axis will be
set to the inverse of the number of points along that
axis.
harmonic : bool, *optional*
Whether the space represents a grid in position or harmonic space.
(default: False).
Attributes
----------
......@@ -92,15 +92,6 @@ class RGSpace(Space):
def __init__(self, shape, zerocenter=False, distances=None,
harmonic=False):
"""
Sets the attributes for an RGSpace class instance.
Returns
-------
None
"""
self._harmonic = bool(harmonic)
super(RGSpace, self).__init__()
......@@ -218,16 +209,17 @@ class RGSpace(Space):
""" Calculates an n-dimensional array with its entries being the
lengths of the vectors from the zero point of the grid.
Parameters
----------
Parameters
----------
distribution_strategy : str
The distribution_strategy which shall be used the returned
distributed_data_object.
Returns
-------
Returns
-------
distributed_data_object
A d2o containing the distances
A d2o containing the distances.
"""
shape = self.shape
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment