Skip to content
This repository has been archived by the owner on Jul 22, 2021. It is now read-only.

Commit

Permalink
Update astropy/scipy links
Browse files Browse the repository at this point in the history
  • Loading branch information
stscieisenhamer committed Dec 28, 2016
1 parent ec81bcd commit bf200d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions specviz/analysis/models/blackbody.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ class BlackBody(Fittable1DModel):
Notes
-----
See `astropy.modeling.Fittable1DModel <http://docs.astropy.org/en/stable/api/astropy.modeling.Fittable1DModel.html#astropy.modeling.Fittable1DModel>`_
for further details.
See `~astropy.modeling.Fittable1DModel`
for further details on modeling and all
possible parameters that can be passed in.
Description of the blackbody function itself is described in
`astropy.analytic_functions <http://docs.astropy.org/en/stable/analytic_functions/index.html#blackbody-radiation>`_
`~astropy.analytic_functions.blackbody`
"""
temp = Parameter(default=5000, min=10.)
norm = Parameter(default=1.)
Expand Down
4 changes: 2 additions & 2 deletions specviz/analysis/models/spline.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ class Spline1D(Fittable1DModel):
Notes
-----
See
`astropy.modeling.Fittable1DModel <http://docs.astropy.org/en/stable/api/astropy.modeling.Fittable1DModel.html#astropy.modeling.Fittable1DModel>`_
`~astropy.modeling.Fittable1DModel`
for further details.
The spline function is based on
`scipy.interpolate.UnivariateSpline <https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.UnivariateSpline.html>`_
`~scipy.interpolate.UnivariateSpline`
"""
degree = Parameter(default=3, fixed=True)
smooth = Parameter(default=1, fixed=True) # default=None crashes the app
Expand Down

0 comments on commit bf200d8

Please sign in to comment.