Matrix<T>.ToDataFrame<R, C> Method

Converts a matrix to a data frame with the same row and column indexes.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public DataFrame<R, C> ToDataFrame<R, C>()

Type Parameters

R
The element type of the row index.
C
The element type of the column index.

Return Value

DataFrame<R, C>
A data frame with the same values as the matrix.

See Also