Creates a data table of one column that contains the values in this vector.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public DataTable ToDataTable(
	string name
)
Visual Basic (Declaration)
Public Function ToDataTable ( _
	name As String _
) As DataTable
Visual C++
public:
DataTable^ ToDataTable(
	String^ name
)

Parameters

name
Type: System..::.String
A specified table name.

Return Value

A new data table.

Remarks

The table is named using the specified table name. The column name is "column1". Values are copied.

See Also