Converts a matrix to a data frame with the same row and column indexes.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> ToDataFrame<R, C>()
Public Function ToDataFrame(Of R, C) As DataFrame(Of R, C)
public:
generic<typename R, typename C>
DataFrame<R, C>^ ToDataFrame()
member ToDataFrame : unit -> DataFrame<'R, 'C>
Type Parameters
- R
- The element type of the row index.
- C
- The element type of the column index.
Return Value
Type:
DataFrameR,
CA data frame with the same values as the matrix.
Reference