solvr 0.2.0

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
Documentation
pub mod akima;
pub mod bezier_curve;
pub mod bezier_surface;
pub mod bspline;
pub mod bspline_curve;
pub mod bspline_surface;
pub mod clough_tocher;
pub mod cubic_spline;
pub mod geometric;
pub mod interp1d;
pub mod interpnd;
pub mod nurbs_curve;
pub mod nurbs_surface;
pub mod pchip;
pub mod rbf;
pub mod rect_bivariate_spline;
pub mod scattered;
pub mod smooth_bivariate_spline;

pub use akima::AkimaAlgorithms;
pub use bezier_curve::{BezierCurve, BezierCurveAlgorithms};
pub use bezier_surface::{BezierSurface, BezierSurfaceAlgorithms};
pub use bspline::{BSpline, BSplineAlgorithms, BSplineBoundary};
pub use bspline_curve::{BSplineCurve, BSplineCurveAlgorithms};
pub use bspline_surface::{BSplineSurface, BSplineSurfaceAlgorithms};
pub use clough_tocher::{CloughTocher2D, CloughTocher2DAlgorithms};
pub use cubic_spline::{CubicSplineAlgorithms, SplineBoundary};
pub use geometric::{GeometricTransformAlgorithms, InterpolationOrder};
pub use interp1d::{Interp1dAlgorithms, InterpMethod};
pub use interpnd::{ExtrapolateMode, InterpNdAlgorithms, InterpNdMethod};
pub use nurbs_curve::{NurbsCurve, NurbsCurveAlgorithms};
pub use nurbs_surface::{NurbsSurface, NurbsSurfaceAlgorithms};
pub use pchip::PchipAlgorithms;
pub use rbf::{RbfAlgorithms, RbfKernel, RbfModel};
pub use rect_bivariate_spline::{BivariateSpline, RectBivariateSplineAlgorithms};
pub use scattered::{ScatteredInterpAlgorithms, ScatteredMethod};
pub use smooth_bivariate_spline::SmoothBivariateSplineAlgorithms;