You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`gsd`is using an algorithm that is searching for inflection points to determine the position and width of peaks. The width is defined as the distance between the 2 inflection points. Depending the shape of the peak this width may differ from 'fwhm' (Full Width Half Maximum).
11
13
@@ -29,7 +31,7 @@ The result of GSD is an array of GSDPeak:
29
31
- from: { x, index }
30
32
- to: { x, index }
31
33
32
-
## Parameters
34
+
###Parameters
33
35
34
36
#### minMaxRatio=0.00025 (0-1)
35
37
@@ -51,14 +53,14 @@ Use a quadratic optimizations with the peak and its 3 closest neighbors to deter
51
53
52
54
Savitzky-Golay parameters. windowSize should be odd; polynomial is the degree of the polynomial to use in the approximations. It should be bigger than 2.
We enlarge the peaks and add the properties from and to.
59
61
By default we enlarge of a factor 2 and we don't allow overlap.
60
62
61
-
### GSD.optimizePeaks(data, peakList, options)
63
+
####GSD.optimizePeaks(data, peakList, options)
62
64
63
65
Optimize the position (x), max intensity (y), full width at half maximum (fwhm) and the ratio of gaussian contribution (mu) if it's required. It currently supports three kind of shapes: gaussian, lorentzian and pseudovoigt
0 commit comments