[This is preliminary documentation and is subject to change.]

Gets the BoltzmannProbability of a specified activation using a collection of other activations

Namespace: Clarion.Framework.Templates
Assembly: CLARIONLibrary (in CLARIONLibrary.dll) Version: 6.1.0.7 (6.1.0.7)

Syntax

C#
public double GetBoltzmannProbability(
	double chosenActivation,
	ICollection<double> candidates
)

Parameters

chosenActivation
Type: System..::..Double
The chosen activation to use as the numerator when calculating the Boltzmann probability
candidates
Type: System.Collections.Generic..::..ICollection<(Of <(<'Double>)>)>
The collection of activations to use for calculating the Boltzmann sum

Return Value

The Boltzmann probability of the target

Remarks

Note
The specified activation should also be in the collection of activations.

See Also