Attribute "FWHM"?
See original GitHub issueI have realized that Fittable1DModel
and Fittable2DModel
(including Gaussian and Moffat) has no attribute of FWHM
, while quite many of them actually need it for astronomical purposes.
A built-in function astropy.stats.gaussian_sigma_to_fwhm
can be used only for Gaussian, while we need much more functions’ FWHM values in practice.
I guess it will be very useful if we have something like attribute to calculate FWHM.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:14 (12 by maintainers)
Top Results From Across the Web
Full width at half maximum - Wikipedia
In a distribution, full width at half maximum (FWHM) is the difference between the two values of the independent variable at which the...
Read more >Definition of full width at half maximum (FWHM) bandwidth for ...
The FWHM area is represented by the width in the shaded region between the points on the curve where the amplitude has dropped...
Read more >Explain to me, what is FWHM? - Beginning Deep Sky Imaging
FWHM is the width of the bell at its midway point hence "half". ... their "FWHM" as say, less than 2" and attribute...
Read more >Proving The Full Width At Half Maximum (FWHM ... - YouTube
In this video, I show the relationship between the full-width at half max of a Gaussian is 2.3548 times the standard deviation of...
Read more >full-width half-maximum fwhm: Topics by Science.gov
Here, an enhancement in the luminescent property of tin-halide perovskite nanoplates (TPNPs) that are composed of strongly coupled layered structures with ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I suggest we take a minimal approach because it can easily get complicated. For all models for which this makes sense, have a getter property
fwhm
which computesfwhm
fromstddev
.fwhm
is not going to be a settable property and not allowed in__init__
.@ysBach - We usually keep issues open until the fixes are merged. In most cases the merge will auto-close them.