UNPKG

ml-distance

Version:

Distance and similarity functions to compare vectors

21 lines (20 loc) 512 B
import { NumberArray } from 'cheminfo-types'; /** *Returns the Czekanowski similarity between vectors a and b * @link [Czekanowski similarity](https://www.naun.org/main/NAUN/ijmmas/mmmas-49.pdf) * @param a - first vector * @param b - second vector * */ export default function czekanowskiSimilarity( a: NumberArray, b: NumberArray, ): number { let up = 0; let down = 0; for (let i = 0; i < a.length; i++) { up += Math.min(a[i], b[i]); down += a[i] + b[i]; } return (2 * up) / down; }