![]() | VectorGetValue Method |
Namespace: sqx
public SqlDouble GetValue( SqlInt32 i )
declare @V sqx.Vector = sqx.ZeroVector(3).SetValue(2.5,1).SetValue(3.8,2).SetValue(4.2,3) --set @V = sqx.ZeroVector(3).SetValue(2.5,1).SetValue(3.8,2).SetValue(4.2,3) select @V.GetValue(1) [1], @V.GetValue(2) [2], @V.GetValue(3) [3] /* 1 2 3 ---------------------- ---------------------- ---------------------- 2.5 3.8 4.2*/