GaussianStatistics.MultiDimensionalStandardDeviationFactor 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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: System.Int32
The dimension of the gaussian probability distribution. - probability
- Type: System.Double
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