lsst.shapelet
13.0-6-ge6e5c2d+13
python
lsst
shapelet
radialProfile
radialProfileContinued.py
Go to the documentation of this file.
1
from
__future__
import
absolute_import, division, print_function
2
3
import
numpy
as
np
4
5
from
.radialProfile
import
RadialProfile
6
7
from
lsst.utils
import
continueClass
8
9
__all__ = []
10
11
12
@continueClass
# noqa F811
13
class
RadialProfile
:
14
def
evaluate
(self, r):
15
if
isinstance(r, np.ndarray):
16
return
self._evaluate(r.ravel()).reshape(r.shape)
17
else
:
18
return
self._evaluate(r)
lsst::shapelet.radialProfile.radialProfileContinued.RadialProfile
Definition:
radialProfileContinued.py:13
lsst::shapelet.radialProfile.radialProfileContinued.RadialProfile.evaluate
def evaluate(self, r)
Definition:
radialProfileContinued.py:14
Generated on Sun Sep 24 2017 10:16:45 for lsst.shapelet by
1.8.13