Create an RLINK Query Expression Node


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Rlink( _ 
   ByVal modelname As String,  _ 
   ByVal nqs As NetricsQuery() _ 
) As NetricsQuery
C#
public static NetricsQuery Rlink(
   string modelname,
   NetricsQuery[] nqs
)
C++
public:
 static NetricsQuery Rlink(
   String modelname,
   array<NetricsQuery>^ nqs
)
J#
public static NetricsQuery Rlink(
   string modelname,
   NetricsQuery[] nqs
)
JScript
public static  function Rlink(
   modelname : String,
   nqs : NetricsQuery[]
) : NetricsQuery

Parameters

modelname
the name of the decision engine model to use
nqs
list of NetricsQuery objects that are the sub expressions for this RLINK expression. The number of querylets must be the same as the number of features in the model.

Remarks

The Rlink query uses a TIBCO Patterns Learn Model to intelligently combine querylet scores to produce a single match score. Its use is similar to that of the AND score combiner.

The named model must have been trained with the same set or querylets as passed to the RLINK combiner.

See Also