Matrix<T>.To Data Frame Method
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
ToData | Converts a matrix to a data frame with the same row and column indexes. |
ToData | Converts a matrix to a data frame with the same row and column indexes. |
ToDataFrame<R, C>
Converts a matrix to a data frame with the same row and column indexes.
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.
ToDataFrame<R, C>(Index<R>, Index<C>)
Converts a matrix to a data frame with the same row and column indexes.
public DataFrame<R, C> ToDataFrame<R, C>(
Index<R> rowIndex,
Index<C> columnIndex
)
Parameters
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.