GaussianStatisticsMultiDimensionalStandardDeviationFactor Method |
Calculates the number of standard deviations that describe the confidence interval which makes up
the given portion of the probability distribution.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double MultiDimensionalStandardDeviationFactor(
int dimension,
double probability
)
Public Shared Function MultiDimensionalStandardDeviationFactor (
dimension As Integer,
probability As Double
) As Double
public:
static double MultiDimensionalStandardDeviationFactor(
int dimension,
double probability
)
static member MultiDimensionalStandardDeviationFactor :
dimension : int *
probability : float -> float
Parameters
- dimension
- Type: SystemInt32
The dimension of the gaussian probability distribution. - probability
- Type: SystemDouble
The desired probability that an event in the probability distribution
lies in the confidence interval described by the returned number of standard deviations, from 0.0 to 1.0;
Return Value
Type:
DoubleThe number of standard deviations necessary to provide the specified confidence interval.
See Also