Skip to content

Commit

Permalink
DOC: Add doc string for CubicBSplineBases
Browse files Browse the repository at this point in the history
  • Loading branch information
Axect committed May 1, 2024
1 parent 0f0112a commit 1e91054
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/numerical/spline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,15 @@
//! }
//! ```
//!
//! # B-Spline (incomplete)
//!
//! - `UnitCubicBasis`: Single cubic B-Spline basis function
//! - `CubicBSplineBases`: Uniform Cubic B-Spline basis functions
//!
//! # References
//!
//! * Gary D. Knott, *Interpolating Splines*, Birkhäuser Boston, MA, (2000).
//! - Gary D. Knott, *Interpolating Splines*, Birkhäuser Boston, MA, (2000).
/// - [Wikipedia - Irwin-Hall distribution](https://en.wikipedia.org/wiki/Irwin%E2%80%93Hall_distribution#Special_cases)
use self::SplineError::{NotEnoughNodes, NotEqualNodes, NotEqualSlopes, RedundantNodeX};
#[allow(unused_imports)]
Expand Down

0 comments on commit 1e91054

Please sign in to comment.