Click or drag to resize

InterpolatedPeakFunctionFrom2DTable(Int32, Int32, DataTable, Int32, String, Boolean) Constructor

Initializes a new instance of the InterpolatedPeakFunctionFrom2DTable class.

Namespace: Altaxo.Calc.FitFunctions.Peaks
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public InterpolatedPeakFunctionFrom2DTable(
	int numberOfTerms,
	int orderOfBaselinePolynomial,
	DataTable table,
	int groupNumberOfParticipatingColumns,
	string nameOfPropertyForPositionOrWidth,
	bool propertyIsPeakWidth
)

Parameters

numberOfTerms  Int32
The number of peak terms.
orderOfBaselinePolynomial  Int32
The order of the baseline polynomial, or -1 to disable the baseline.
table  DataTable
The table that contains the peak curves and metadata.
groupNumberOfParticipatingColumns  Int32
The column group number used to select the participating columns.
nameOfPropertyForPositionOrWidth  String
The name of the property column that stores the peak position values or width values for each participating column.
propertyIsPeakWidth  Boolean
Indicates whether the property column stores peak width values () or peak position values ().
Exceptions
ExceptionCondition
ArgumentException Thrown if no participating columns are found, if no x column can be determined, or if the x column is not a DoubleColumn.
See Also