Returns the predicted classification probabilities for each target class.

Namespace: Imsl.DataMining
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double[][] GetProbabilities()
Visual Basic (Declaration)
Public Function GetProbabilities As Double()()
Visual C++
public:
array<array<double>^>^ GetProbabilities()

Return Value

A double matrix, prob, of size nPatterns by nClasses containing the predicted classification probabilities for each target class, where nPatterns is the number of patterns trained. prob[i][j] is the estimated probability that the i-th pattern belongs to the j-th target class.

See Also