GaussianStatisticsMultiDimensionalConfidenceIntervals Method |
Calculates the fraction of the probability distribution of a specified dimension that lies within
the confidence interval described by the specified number of standard deviations.
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 MultiDimensionalConfidenceIntervals(
int dimension,
double sigmas
)
Public Shared Function MultiDimensionalConfidenceIntervals (
dimension As Integer,
sigmas As Double
) As Double
public:
static double MultiDimensionalConfidenceIntervals(
int dimension,
double sigmas
)
static member MultiDimensionalConfidenceIntervals :
dimension : int *
sigmas : float -> float
Parameters
- dimension
- Type: SystemInt32
The dimension of the gaussian probability distribution. - sigmas
- Type: SystemDouble
The width of the confidence interval in standard deviations.
Return Value
Type:
DoubleThe fraction of the probability distribution within the confidence interval, between 0.0 and 1.0.
See Also