| 
            
              MatrixContinuousDistributionInnerComplementaryDistributionFunction Method 
             | 
          
        
         
              Gets the complementary cumulative distribution function
              (ccdf) for this distribution evaluated at point x.
              This function is also known as the Survival function.
            
 
    Namespace: 
   Accord.Statistics.Distributions.Multivariate
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxprotected internal virtual double InnerComplementaryDistributionFunction(
	double[,] x
)
Protected Friend Overridable Function InnerComplementaryDistributionFunction ( 
	x As Double(,)
) As Double
 Request Example
		View SourceParameters
- x
 - Type: SystemDouble
 
Return Value
Type: 
Double
Remarks
              The Complementary Cumulative Distribution Function (CCDF) is
              the complement of the Cumulative Distribution Function, or 1
              minus the CDF.
            
See Also