Click or drag to resize

RealFourierTransformation2DRemoveFirstOrderFromMatrixIgnoringInvalidElements Method

Removes the first order of a matrix by calculating the parameters a, b, c of the regression of the matrix in the form: z = a + b*x + c*y (x and y are the rows and columns of the matrix, z the matrix elements ), and then subtracting the regression function from each matrix element, thus effectively removing the first order. Here, only matrix elements that have a finite value are included in the calculation of the regression.

Namespace: Altaxo.Calc.Fourier
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void RemoveFirstOrderFromMatrixIgnoringInvalidElements(
	IMatrix<double> m
)

Parameters

m  IMatrixDouble
The matrix to change.
See Also