UNPKG

double-double

Version:

Pure double-double precision functions *with strict error bounds*.

16 lines (15 loc) 598 B
/** * Returns the result of dividing two double-double-precision floating point * numbers together with an absolute error bound where nE and dE are absolute * error bounds on the *input* values. * * @param numer numerator - a double-double-precision float * @param denom denominator - a double-double-precision float * @param nE absolute value error bound in numerator * @param dE absolute value error bound in denominator */ declare function ddDivDdWithError(numer: number[], denom: number[], nE: number, dE: number): { est: number[]; err: number; }; export { ddDivDdWithError };