Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
skamann
pampelmuse
Commits
61d5ede1
Commit
61d5ede1
authored
Nov 11, 2020
by
skamann
Browse files
Revised parameter bounds for Moffat-Gauss PSF.
parent
bd4eaf25
Changes
1
Hide whitespace changes
Inline
Side-by-side
pampelmuse/psf/profiles/moffat_gaussian.py
View file @
61d5ede1
...
...
@@ -559,7 +559,8 @@ class MoffatGaussian(Profile):
@
property
def
bounds
(
self
):
bounds
=
super
(
MoffatGaussian
,
self
).
bounds
bounds
[
'fwhm1'
]
=
(
self
.
fwhm2
,
np
.
inf
)
bounds
[
'fwhm2'
]
=
(
0
,
self
.
fwhm1
)
bounds
[
'beta'
]
=
(
0
,
np
.
inf
)
bounds
[
'f12'
]
=
(
0
,
1
)
bounds
[
'fwhm1'
]
=
(
0
,
np
.
inf
)
# (self.fwhm2, np.inf)
bounds
[
'fwhm2'
]
=
(
0
,
np
.
inf
)
# (0, self.fwhm1)
bounds
[
'beta'
]
=
(
1
,
np
.
inf
)
return
bounds
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment