 | DoubleVectorToDataTable(String) Method |
Creates a data table of one column that contains the values in this vector.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataTable ToDataTable(
string name
)
Public Function ToDataTable (
name As String
) As DataTable
public:
DataTable^ ToDataTable(
String^ name
)
member ToDataTable :
name : string -> DataTable
Parameters
- name String
- A specified table name.
Return Value
DataTableA new data table.
Remarks
The table is named using the specified table name. The column name is
"column1". Values are copied.
See Also