CosineDistance Method |
Namespace: Accord.Math.Distances
// The Cosine distance between (0, 2, 4) and (2, 5, 1) can be directly computed as: double a = Distance.Cosine(new[] { 0.0, 2.0, 4.0 }, new[] { 2.0, 5.0, 1.0 }); // ~0.42845239335059182d // Or could also be computed by instantiating the Cosine class beforehand as: Cosine cos = new Cosine(); double b = cos.Distance(new[] { 0.0, 2.0, 4.0 }, new[] { 2.0, 5.0, 1.0 }); // ~0.42845239335059182d