Multiplies two polynomials together using an FFT.
Compute (1 + 2*x) * (1 + x^2):
var mult = require("poly-mult-fft")
console.log(mult([1, 2], [1, 0, 1]))
[1, 2, 1, 2]
Compute (i + (1+3i)*x) * (2 + 5i * x^2):
var mult = require("poly-mult-fft")
console.log(mult( [[0, 1], [1, 3]],
[[2, 0, 0], [0, 0, 5]] ))
[[0, 2, 5, 15],
[2, 6, 0, 5]]
Install using npm:
npm install poly-mult-fft
require("poly-mult-fft")(a, b)Multiplies two polynomials together.
a is the first polynomialb is the second polynomialSupports both real and complex valued polynomials. To handle complex data, you should pass in a pair of coefficients
Returns: The product of the two polynomials
Time Complexity: O((a.length + b.length) * log(a.length + b.length))
(c) 2013 Mikola Lysenko. MIT License