Click or drag to resize
sqx

SQXSoftMaxParametersTable Method

Function [table] SoftMaxParametersTable([Vector] SoftMaxSummary)
(Transformation)

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

Parameters

SoftMaxSummary
Type: sqxVector
[Vector]

Return Value

Type: IEnumerator
[table]
Remarks
SoftMax parameters table function.

Attributes

IsDeterministic = true, IsPrecise = true, DataAccess = DataAccessKind.None, SystemDataAccess = SystemDataAccessKind.None, TableDefinition = "SoftMaxSum float, MaxValue float"
Examples
SQL
WITH sample_data AS (SELECT ID, sqx.StdLogistic_PPF(Value) X FROM sqx.UTable(10,0))
SELECT spt.*
FROM (SELECT sqx.SOFTMAXSUM(X) SMS FROM sample_data) z
CROSS APPLY sqx.SoftMaxParametersTable(z.SMS) spt
/*
SoftMaxSum             MaxValue
---------------------- ----------------------
0.439585885198834      3.77374757886116*/
See Also