Click or drag to resize

DataTableMatrixProxyBaseGetMatrix Method

Gets the matrix as writeable matrix of Double values. The parameter matrixGenerator is used to generate a matrix.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public IMatrix<double> GetMatrix(
	Func<int, int, IMatrix<double>> matrixGenerator
)

Parameters

matrixGenerator  FuncInt32, Int32, IMatrixDouble
The matrix generator. The two parameters are the number of rows and the number of columns of the matrix. The function has to return a writeable matrix.

Return Value

IMatrixDouble
A matrix with the data this proxy refers to.
See Also