Click or drag to resize

MatrixToDataTableConverterSetContentFromMatrix(DataTable, IROMatrixDouble, String, IReadOnlyListDouble, String, IReadOnlyListDouble, String) Method

Replaces the content of the destination table with the data from the specified matrix and adds row and column header data.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static void SetContentFromMatrix(
	DataTable destinationTable,
	IROMatrix<double> matrix,
	string columnBaseName,
	IReadOnlyList<double> rowHeaderColumn,
	string rowHeaderColumnName,
	IReadOnlyList<double> colHeaderColumn,
	string colHeaderColumnName
)

Parameters

destinationTable  DataTable
The destination table.
matrix  IROMatrixDouble
The source matrix.
columnBaseName  String
The base name used for generated column names.
rowHeaderColumn  IReadOnlyListDouble
The values for the row-header column.
rowHeaderColumnName  String
The name of the row-header column.
colHeaderColumn  IReadOnlyListDouble
The values for the column-header column.
colHeaderColumnName  String
The name of the column-header column.
See Also