| 
            
              DistanceCanberra Method 
             | 
          
        
         
               Gets the Canberra distance between two points.
             
 
    Namespace: 
   Accord.Math
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic static double Canberra(
	double[] x,
	double[] y
)
Public Shared Function Canberra ( 
	x As Double(),
	y As Double()
) As Double
 Request Example
		View SourceParameters
- x
 - Type: SystemDouble
The first point x. - y
 - Type: SystemDouble
The second point y. 
Return Value
Type: 
DoubleThe Canberra distance between x and y.
Examples
               For examples, please see 
Canberra documentation page.
             
See Also