MatlabDataObject.ToDataFrame Method

Definition

Namespace: Extreme.Data.Matlab
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ToDataFrame() Converts the object to a data frame.
ToDataFrame<R, C>() Converts the object to a data frame.

MatlabDataObject.ToDataFrame

Converts the object to a data frame.
C#
public DataFrame<long, string> ToDataFrame()

Return Value

DataFrame<Int64, String>
The new data frame.

Implements

IDataObject<TObject>.ToDataFrame()

MatlabDataObject.ToDataFrame<R, C>

Converts the object to a data frame.
C#
public virtual DataFrame<R, C> ToDataFrame<R, C>()

Type Parameters

R
C

Return Value

DataFrame<R, C>
The new data frame.

Implements

IDataObject<TObject>.ToDataFrame<R, C>()

See Also