Click or drag to resize
sqx

SQXVectorTable Method

Function [table] VectorTable([Vector] V)

Namespace:  sqx
Assembly:  SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntax
C#
public static IEnumerator VectorTable(
	Vector V
)

Parameters

V
Type: sqxVector
[Vector]

Return Value

Type: IEnumerator
[table]
Remarks
Vector table function.

Attributes

IsDeterministic = true, IsPrecise = true, DataAccess = DataAccessKind.None, SystemDataAccess = SystemDataAccessKind.None, TableDefinition = "ID int,Value float"
Examples
SQL
declare @V sqx.Vector = sqx.RandomVector(3, 1)
select * from sqx.VectorTable(@V)
/*
ID          Value
----------- ----------------------
1           0.248668584157093
2           0.110743977181029
3           0.467010679872246*/
See Also