FitFunctionMultipleSpectraSeparatePeakHeightsSeparateBaseline Constructor |
Namespace: Altaxo.Science.Spectroscopy.PeakFitting.MultipleSpectraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic FitFunctionMultipleSpectraSeparatePeakHeightsSeparateBaseline(
IFitFunctionPeak underlyingFitFunction,
IReadOnlyList<int> startIndicesOfSpectra
)
Parameters
- underlyingFitFunction IFitFunctionPeak
- The underlying peak fitting function.
- startIndicesOfSpectra IReadOnlyListInt32
- The start indices of spectra. The first entry must always be zero, since this
is the start of the spectral values of the first spectrum in the global array. The next entries are incremented by the number of spectral values.
For example, if three spectra should be fitted with length of 100, 90 and 80 respectively, the list should contain [0, 100, 190]. The length of the last
spectrum (80 in this example) is deduced from the last entry and the length of the global array.
See Also