Click or drag to resize

SpectroscopyCommandsExecuteSpectralPreprocessing Method

Executes the spectral preprocessing for one or more than one spectrum

Namespace: Altaxo.Science.Spectroscopy
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static List<(DataColumn xOrgCol, DataColumn yOrgCol, DataColumn xPreprocessedCol, DataColumn yPreprocessedCol, double[] , double[] , int[] )> ExecuteSpectralPreprocessing(
	DataTableMultipleColumnProxy inputData,
	SpectralPreprocessingOptionsBase doc,
	DataTable dstTable
)

Parameters

inputData  DataTableMultipleColumnProxy
The input data. Usually consists of one x-axis and one or more y-arrays (the spectra).
doc  SpectralPreprocessingOptionsBase
Spectral preprocessing options. document.
dstTable  DataTable
The data table were to write the results to.

Return Value

ListValueTupleDataColumn, DataColumn, DataColumn, DataColumn, Double, Double, Int32
A list. Each entry consists of: - the original x-column and original y-column of the spectrum, - the columns with the preprocessed spectrum (x and y), - the array with the preprocessed spectrum (x, y, and regions).
See Also