import type { NumberArray } from 'cheminfo-types'; /** * Calculates the correlation between 2 vectors * https://en.wikipedia.org/wiki/Correlation_and_dependence * @param A - first array * @param B - sencond array */ export declare function xCorrelation(A: NumberArray, B: NumberArray): number; //# sourceMappingURL=xCorrelation.d.ts.map