1.0.0 • Published 12 years ago
robust-subtract v1.0.0
robust-subtract
Exactly computes the difference of two non-increasing overlapping sequences. See robust-sum for more details.
Example
var robustDiff = require("robust-subtract")
console.log(robustDiff([1], [1e-64]))Install
npm install robust-subtractAPI
require("robust-subtract")(a,b)
Returns the difference of the sequences a and b encoded as a non-overlapping increasing sequence.
ais the first numberbis the second number
Returns The difference of a and b
Credits
(c) 2014 Mikola Lysenko. MIT License