Polynomials and Piecewise Polynomials in Swift.
let package = Package(
dependencies: [
.package(url: "https://github.com/dastrobu/PolynomialSwift.git", from: "0.1.0"),
]
)
Make sure a valid deployment target is setup in the Podfile and add
pod 'PolynomialSwift', '~> 0'
Depends on Accelerate and hence only runs on macOS
- Fast polynomial evaluation (employing Accelerate framework)
- Derivatives
- Integrals
- Root finding
Read the generated docs.