|   | CircularQuartiles Method (Double, Double, DoubleRange, Boolean, QuantileMethod) | 
        
         
              Computes the circular quartiles of the given circular samples.
              The minimum possible value for a sample must be zero and the maximum must
              be indicated in the parameter length.
            
 
    Namespace: 
   Accord.Statistics
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
 Syntax
Syntaxpublic static double Quartiles(
	double[] samples,
	double length,
	out DoubleRange range,
	bool wrap = true,
	QuantileMethod type = QuantileMethod.Default
)
Public Shared Function Quartiles ( 
	samples As Double(),
	length As Double,
	<OutAttribute> ByRef range As DoubleRange,
	Optional wrap As Boolean = true,
	Optional type As QuantileMethod = QuantileMethod.Default
) As Double
Parameters
- samples
- Type: SystemDouble
 A double array containing the circular samples.
- length
- Type: SystemDouble
 The maximum possible value of the samples.
- range
- Type: AccordDoubleRange
 The sample quartiles, as an out parameter.
- wrap (Optional)
- Type: SystemBoolean
 Whether range values should be wrapped to be contained in the circle. If 
              set to false, range values could be returned outside the [+pi;-pi] range.
- type (Optional)
- Type: Accord.StatisticsQuantileMethod
 The quartile definition that should be used. See QuantileMethod for datails.
Return Value
Type: 
DoubleThe median of the given samples.
 See Also
See Also