poly_interp 1.0.0-beta.1

A simple but powerful polynomial library focused on interpolation between points.
Documentation
  • Coverage
  • 100%
    30 out of 30 items documented0 out of 24 items with examples
  • Size
  • Source code size: 24.75 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.67 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • UxuginPython/poly_interp
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • UxuginPython

poly_interp

A simple but powerful polynomial library focused on interpolation between points. Works with both standard polynomials and parametric curves. Mostly no_std although a dynamic allocator is required. Based on the f64 number type. BSD licensed.

Features

  • Construct polynomials from coefficients or zeros.
  • Interpolate polynomials of least degree between points.
  • Solve for derivatives and integrals of polynomials.
  • Add, subtract, and multiply polynomials.
  • Use Newton's method of iteratively finding roots of functions generically or with the included types.
  • Construct polynomial parametric curves from (x, y, t) points that they pass through.
    • Convert between t and distance along the curve (std-only).