From 16e79d75b721b584a92527437fb040567e693d6f Mon Sep 17 00:00:00 2001 From: Michael Heuer Date: Fri, 9 Feb 2024 14:30:48 +0100 Subject: [PATCH] doc: fix broken plot --- src/curve/generation/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/curve/generation/mod.rs b/src/curve/generation/mod.rs index d4e7427..75a6467 100644 --- a/src/curve/generation/mod.rs +++ b/src/curve/generation/mod.rs @@ -17,7 +17,7 @@ doc = ::embed_doc_image::embed_image!("fit-loose-half-penalized", "doc-images/pl //! - unpenalized/penalized //! //! -//! | Raw Data | Manual Control Polygon | Interpolation |F +//! | Raw Data | Manual Control Polygon | Interpolation | //! |:------------------------------|:--------------------------|:--------------------------| //! | ![][points] | ![][manual] | ![][interpolation] | //! | Scattered, 2-dimensional data points
(`N = 18`).

| Curve of degree `p = 2` with `n = N-1`
segments and control points generated
directly from the data points. | Curve of degree `p = 2` and `n = N-1`
segments interpolating the data points.

|