funcnodes-span 0.1.6__tar.gz → 0.1.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {funcnodes_span-0.1.6 → funcnodes_span-0.1.7}/PKG-INFO +1 -1
- {funcnodes_span-0.1.6 → funcnodes_span-0.1.7}/funcnodes_span/__init__.py +1 -1
- {funcnodes_span-0.1.6 → funcnodes_span-0.1.7}/funcnodes_span/peak_analysis.py +3 -3
- {funcnodes_span-0.1.6 → funcnodes_span-0.1.7}/pyproject.toml +1 -1
- {funcnodes_span-0.1.6 → funcnodes_span-0.1.7}/README.md +0 -0
- {funcnodes_span-0.1.6 → funcnodes_span-0.1.7}/funcnodes_span/normalization.py +0 -0
- {funcnodes_span-0.1.6 → funcnodes_span-0.1.7}/funcnodes_span/smoothing.py +0 -0
|
@@ -179,7 +179,7 @@ def compute_peak_properties(
|
|
|
179
179
|
return peak_properties
|
|
180
180
|
|
|
181
181
|
|
|
182
|
-
@NodeDecorator(id="span.basics.peaks", name="Peak finder
|
|
182
|
+
@NodeDecorator(id="span.basics.peaks", name="Peak finder")
|
|
183
183
|
@controlled_wrapper(find_peaks, wrapper_attribute="__fnwrapped__")
|
|
184
184
|
def peak_finder(
|
|
185
185
|
x_array: np.ndarray,
|
|
@@ -310,14 +310,14 @@ class FittingModel(Enum):
|
|
|
310
310
|
Moffat = "Moffat"
|
|
311
311
|
Pearson4 = "Pearson4"
|
|
312
312
|
Pearson7 = "Pearson7"
|
|
313
|
+
SkewedGaussian = "Skewed Gaussian"
|
|
314
|
+
SkewedVoigt = "Skewed Voigt"
|
|
313
315
|
StudentsT = "StudentsT"
|
|
314
316
|
BreitWigner = "Breit-Wigner"
|
|
315
317
|
LogNormal = "Log-Normal"
|
|
316
318
|
DampedOscillator = "Damped Oscillator"
|
|
317
319
|
DampedHarmonicOscillator = "Damped Harmonic Oscillator"
|
|
318
320
|
ExponentialGaussian = "Exponential Gaussian"
|
|
319
|
-
SkewedGaussian = "Skewed Gaussian"
|
|
320
|
-
SkewedVoigt = "Skewed Voigt"
|
|
321
321
|
ThermalDistribution = "Thermal Distribution"
|
|
322
322
|
Doniach = "Doniach"
|
|
323
323
|
PowerLaw = "Power Law"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|