lox-core 0.1.0-alpha.10

Common data types and utilities for the Lox ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
// SPDX-FileCopyrightText: 2024 Helge Eichhorn <git@helgeeichhorn.de>
//
// SPDX-License-Identifier: MPL-2.0

//! Interpolated data series with linear and cubic spline support.

use std::fmt;
use std::str::FromStr;
use std::sync::Arc;

use fast_polynomial::poly_array;
use thiserror::Error;

use crate::math::slices::Monotonic;

use super::linear_algebra::tridiagonal::Tridiagonal;
use super::slices::Diff;

const MIN_POINTS_LINEAR: usize = 2;
const MIN_POINTS_SPLINE: usize = 4;

/// Error returned when constructing a [`Series`] with invalid data.
#[derive(Clone, Debug, Error, PartialEq)]
pub enum SeriesError {
    /// The `x` and `y` arrays have different lengths.
    #[error("`x` and `y` must have the same length but were {0} and {1}")]
    DimensionMismatch(usize, usize),
    /// Fewer than 2 data points were provided.
    #[error("length of `x` and `y` must at least 2 but was {0}")]
    InsufficientPoints(usize),
    /// The x-axis is not strictly monotonically increasing.
    #[error("x-axis must be strictly monotonic")]
    NonMonotonic,
}

/// The interpolation method and its precomputed coefficients.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Interpolation {
    /// Linear interpolation between data points.
    Linear,
    /// Cubic spline interpolation with precomputed polynomial coefficients.
    CubicSpline(Arc<[[f64; 4]]>),
    /// Hermite cubic interpolation with precomputed polynomial coefficients.
    ///
    /// Uses both function values and their derivatives at knot points to construct
    /// a C1-continuous piecewise cubic. The coefficients are stored in the same
    /// `[c0, c1, c2, c3]` format as `CubicSpline`, evaluated as
    /// `c0 + c1·dt + c2·dt² + c3·dt³` where `dt = t - t_i`.
    HermiteCubic(Arc<[[f64; 4]]>),
}

/// An interpolated 1-D data series.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Series {
    x: Arc<[f64]>,
    y: Arc<[f64]>,
    interpolation: Interpolation,
}

/// Selects the interpolation method for a [`Series`].
#[derive(Clone, Debug, PartialEq)]
pub enum InterpolationType {
    /// Linear interpolation.
    Linear,
    /// Natural cubic spline interpolation (falls back to linear if fewer than 4 points).
    CubicSpline,
}

/// Error returned when parsing an unknown interpolation type string.
#[derive(Clone, Debug, Error, PartialEq)]
#[error("unknown interpolation type: \"{0}\"")]
pub struct UnknownInterpolationType(String);

impl FromStr for InterpolationType {
    type Err = UnknownInterpolationType;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "linear" => Ok(Self::Linear),
            "cubic" => Ok(Self::CubicSpline),
            _ => Err(UnknownInterpolationType(s.to_owned())),
        }
    }
}

impl fmt::Display for InterpolationType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Linear => write!(f, "linear"),
            Self::CubicSpline => write!(f, "cubic"),
        }
    }
}

impl Series {
    /// Creates a new series, returning an error if the data is invalid.
    pub fn try_new(
        x: impl Into<Arc<[f64]>>,
        y: impl Into<Arc<[f64]>>,
        interpolation: InterpolationType,
    ) -> Result<Self, SeriesError> {
        let x: Arc<[f64]> = x.into();
        let y: Arc<[f64]> = y.into();

        Self::check(&x, &y)?;

        Ok(Self::new(x, y, interpolation))
    }

    /// Creates a new series, panicking if the data is invalid.
    pub fn new(
        x: impl Into<Arc<[f64]>>,
        y: impl Into<Arc<[f64]>>,
        interpolation: InterpolationType,
    ) -> Self {
        let x: Arc<[f64]> = x.into();
        let y: Arc<[f64]> = y.into();

        Self::assert(&x, &y);

        match interpolation {
            InterpolationType::Linear => Self::linear(x, y),
            InterpolationType::CubicSpline => {
                let n = x.len();
                if n < MIN_POINTS_SPLINE {
                    Self::linear(x, y)
                } else {
                    Self::cubic_spline(x, y)
                }
            }
        }
    }

    fn linear(x: Arc<[f64]>, y: Arc<[f64]>) -> Self {
        Self {
            x,
            y,
            interpolation: Interpolation::Linear,
        }
    }

    /// Creates a Hermite cubic spline from function values `y` and their derivatives `dy`.
    ///
    /// On each interval `[x_i, x_{i+1}]` with `h = x_{i+1} - x_i`, the polynomial
    /// `p(dt) = c0 + c1·dt + c2·dt² + c3·dt³` is constructed so that:
    /// - `p(0)  = y_i`,  `p(h)  = y_{i+1}`
    /// - `p'(0) = dy_i`, `p'(h) = dy_{i+1}`
    pub fn hermite_cubic(
        x: impl Into<Arc<[f64]>>,
        y: impl Into<Arc<[f64]>>,
        dy: impl Into<Arc<[f64]>>,
    ) -> Self {
        let x: Arc<[f64]> = x.into();
        let y: Arc<[f64]> = y.into();
        let dy: Arc<[f64]> = dy.into();

        Self::assert(&x, &y);
        assert!(dy.len() == x.len());

        let n = x.len();
        let coeffs: Vec<[f64; 4]> = (0..n - 1)
            .map(|i| {
                let h = x[i + 1] - x[i];
                let h2 = h * h;
                let h3 = h2 * h;
                let delta_y = y[i + 1] - y[i];
                let c0 = y[i];
                let c1 = dy[i];
                let c2 = 3.0 * delta_y / h2 - (2.0 * dy[i] + dy[i + 1]) / h;
                let c3 = -2.0 * delta_y / h3 + (dy[i] + dy[i + 1]) / h2;
                [c0, c1, c2, c3]
            })
            .collect();

        Self {
            x,
            y,
            interpolation: Interpolation::HermiteCubic(coeffs.into()),
        }
    }

    fn cubic_spline(x: Arc<[f64]>, y: Arc<[f64]>) -> Self {
        let n = x.len();

        let dx = x.diff();
        let nd = dx.len();
        let slope: Vec<f64> = y
            .diff()
            .iter()
            .enumerate()
            .map(|(idx, y)| y / dx[idx])
            .collect();

        let mut d: Vec<f64> = dx[0..nd - 1]
            .iter()
            .enumerate()
            .map(|(idx, dxi)| 2.0 * (dxi + dx[idx + 1]))
            .collect();
        let mut du: Vec<f64> = dx[0..nd - 1].to_vec();
        let mut dl: Vec<f64> = dx[1..].to_vec();
        let mut b: Vec<f64> = dx[0..nd - 1]
            .iter()
            .enumerate()
            .map(|(idx, dxi)| 3.0 * (dx[idx + 1] * slope[idx] + dxi * slope[idx + 1]))
            .collect();

        // Not-a-knot boundary condition
        d.insert(0, dx[1]);
        du.insert(0, x[2] - x[0]);
        let delta = x[2] - x[0];
        b.insert(
            0,
            ((dx[0] + 2.0 * delta) * dx[1] * slope[0] + dx[0].powi(2) * slope[1]) / delta,
        );
        d.push(dx[nd - 2]);
        let delta = x[n - 1] - x[n - 3];
        dl.push(delta);
        b.push(
            (dx[nd - 1].powi(2) * slope[nd - 2]
                + (2.0 * delta + dx[nd - 1]) * dx[nd - 2] * slope[nd - 1])
                / delta,
        );

        let tri = Tridiagonal::new(&dl, &d, &du).unwrap_or_else(|err| {
            unreachable!(
                "dimensions should be correct for tridiagonal system: {}",
                err
            )
        });
        let s = tri.solve(&b);
        let t: Vec<f64> = s[0..n - 1]
            .iter()
            .enumerate()
            .map(|(idx, si)| (si + s[idx + 1] - 2.0 * slope[idx]) / dx[idx])
            .collect();

        let coeffs: Vec<[f64; 4]> = (0..n - 1)
            .map(|i| {
                let c1 = y[i];
                let c2 = s[i];
                let c3 = (slope[i] - s[i]) / dx[i] - t[i];
                let c4 = t[i] / dx[i];
                [c1, c2, c3, c4]
            })
            .collect();

        Self {
            x,
            y,
            interpolation: Interpolation::CubicSpline(coeffs.into()),
        }
    }

    /// Finds the interval index for interpolation at point `xp`.
    #[inline]
    pub fn find_index(&self, xp: f64) -> usize {
        let x = self.x.as_ref();
        let x0 = *x.first().unwrap();
        let xn = *x.last().unwrap();
        if xp <= x0 {
            0
        } else if xp >= xn {
            x.len() - 2
        } else {
            x.partition_point(|&val| xp > val) - 1
        }
    }

    /// Interpolates at point `xp` using the precomputed interval `idx`.
    #[inline]
    pub fn interpolate_at_index(&self, xp: f64, idx: usize) -> f64 {
        match &self.interpolation {
            Interpolation::Linear => {
                let x = self.x.as_ref();
                let y = self.y.as_ref();
                let x0 = x[idx];
                let x1 = x[idx + 1];
                let y0 = y[idx];
                let y1 = y[idx + 1];
                y0 + (y1 - y0) * (xp - x0) / (x1 - x0)
            }
            Interpolation::CubicSpline(coeffs) | Interpolation::HermiteCubic(coeffs) => {
                poly_array(xp - self.x[idx], &coeffs[idx])
            }
        }
    }

    /// Returns the first derivative at point `xp` using the precomputed interval `idx`.
    ///
    /// For `CubicSpline` and `HermiteCubic`, the derivative of
    /// `p(dt) = c0 + c1·dt + c2·dt² + c3·dt³` is `p'(dt) = c1 + 2·c2·dt + 3·c3·dt²`.
    ///
    /// For `Linear` interpolation, returns the constant slope `(y_{i+1} - y_i) / (x_{i+1} - x_i)`.
    #[inline]
    pub fn derivative_at_index(&self, xp: f64, idx: usize) -> f64 {
        match &self.interpolation {
            Interpolation::Linear => {
                let x = self.x.as_ref();
                let y = self.y.as_ref();
                (y[idx + 1] - y[idx]) / (x[idx + 1] - x[idx])
            }
            Interpolation::CubicSpline(coeffs) | Interpolation::HermiteCubic(coeffs) => {
                let c = &coeffs[idx];
                let dt = xp - self.x[idx];
                poly_array(dt, &[c[1], 2.0 * c[2], 3.0 * c[3]])
            }
        }
    }

    /// Interpolates the series at point `xp`.
    #[inline]
    pub fn interpolate(&self, xp: f64) -> f64 {
        let idx = self.find_index(xp);
        self.interpolate_at_index(xp, idx)
    }

    /// Returns the x data points.
    pub fn x(&self) -> &[f64] {
        self.x.as_ref()
    }

    /// Returns the y data points.
    pub fn y(&self) -> &[f64] {
        self.y.as_ref()
    }

    /// Returns the first `(x, y)` data point.
    pub fn first(&self) -> (f64, f64) {
        (*self.x().first().unwrap(), *self.y().first().unwrap())
    }

    /// Returns the last `(x, y)` data point.
    pub fn last(&self) -> (f64, f64) {
        (*self.x().last().unwrap(), *self.y().last().unwrap())
    }

    fn check(x: &[f64], y: &[f64]) -> Result<(), SeriesError> {
        if !x.is_strictly_increasing() {
            return Err(SeriesError::NonMonotonic);
        }

        let n = x.len();

        if y.len() != n {
            return Err(SeriesError::DimensionMismatch(n, y.len()));
        }

        if n < MIN_POINTS_LINEAR {
            return Err(SeriesError::InsufficientPoints(n));
        }
        Ok(())
    }

    fn assert(x: &[f64], y: &[f64]) {
        assert!(x.is_strictly_increasing());

        let n = x.len();
        assert!(y.len() == n);
        assert!(n >= MIN_POINTS_LINEAR);
    }
}

#[cfg(test)]
mod tests {
    use rstest::rstest;

    use lox_test_utils::assert_approx_eq;

    use super::*;

    #[rstest]
    #[case(0.5, 0.5)]
    #[case(1.0, 1.0)]
    #[case(1.5, 1.5)]
    #[case(2.5, 2.5)]
    #[case(5.5, 5.5)]
    fn test_series_linear(#[case] xp: f64, #[case] expected: f64) {
        let x = vec![1.0, 2.0, 3.0, 4.0, 5.0];
        let y = vec![1.0, 2.0, 3.0, 4.0, 5.0];

        let s = Series::try_new(x, y, InterpolationType::Linear).unwrap();
        let actual = s.interpolate(xp);
        assert_eq!(actual, expected);
    }

    // Reference values from AstroBase.jl
    #[rstest]
    #[case(0.0, -14.303290471048534)]
    #[case(0.1, -12.036932976759344)]
    #[case(0.2, -9.978070560771739)]
    #[case(0.3, -8.117883404355377)]
    #[case(0.4, -6.447551688779917)]
    #[case(0.5, -4.958255595315013)]
    #[case(0.6, -3.6411753052303184)]
    #[case(0.7, -2.487490999795493)]
    #[case(0.8, -1.4883828602801898)]
    #[case(0.9, -0.6350310679540686)]
    #[case(1.0, 0.08138419591321655)]
    #[case(1.1, 0.6696827500520098)]
    #[case(1.2, 1.1386844131926532)]
    #[case(1.3, 1.4972090040654928)]
    #[case(1.4, 1.754076341400871)]
    #[case(1.5, 1.9181062439291328)]
    #[case(1.6, 1.9981185303806206)]
    #[case(1.7, 2.002933019485679)]
    #[case(1.8, 1.9413695299746523)]
    #[case(1.9, 1.8222478805778837)]
    #[case(2.0, 1.6543878900257172)]
    #[case(2.1, 1.4466093770484965)]
    #[case(2.2, 1.2077321603765656)]
    #[case(2.3, 0.9465760587402696)]
    #[case(2.4, 0.6719608908699499)]
    #[case(2.5, 0.3927064754959517)]
    #[case(2.6, 0.11763263134861876)]
    #[case(2.7, -0.14444082284170534)]
    #[case(2.8, -0.384694068344675)]
    #[case(2.9, -0.5943072864299493)]
    #[case(3.0, -0.7644606583671828)]
    #[case(3.1, -0.8886377407066958)]
    #[case(3.2, -0.9695355911214641)]
    #[case(3.3, -1.012154642565128)]
    #[case(3.4, -1.021495327991328)]
    #[case(3.5, -1.0025580803537035)]
    #[case(3.6, -0.960343332605895)]
    #[case(3.7, -0.8998515177015425)]
    #[case(3.8, -0.8260830685942864)]
    #[case(3.9, -0.744038418237766)]
    #[case(4.0, -0.6587179995856219)]
    #[case(4.1, -0.5751222455914945)]
    #[case(4.2, -0.4982515892090227)]
    #[case(4.3, -0.433106463391848)]
    #[case(4.4, -0.38468730109360944)]
    #[case(4.5, -0.3579945352679478)]
    #[case(4.6, -0.3580285988685027)]
    #[case(4.7, -0.3897899248489146)]
    #[case(4.8, -0.458278946162823)]
    #[case(4.9, -0.5684960957638693)]
    #[case(5.0, -0.7254418066056914)]
    #[case(5.1, -0.9341165116419302)]
    #[case(5.2, -1.1995206438262285)]
    #[case(5.3, -1.5266546361122217)]
    #[case(5.4, -1.9205189214535554)]
    #[case(5.5, -2.3861139328038625)]
    #[case(5.6, -2.9284401031167873)]
    #[case(5.7, -3.5524978653459742)]
    #[case(5.8, -4.263287652445054)]
    #[case(5.9, -5.065809897367678)]
    #[case(6.0, -5.965065033067472)]
    fn test_series_spline(#[case] xp: f64, #[case] expected: f64) {
        let x = vec![1.0, 2.0, 3.0, 4.0, 5.0];
        let y = vec![
            0.08138419591321655,
            1.6543878900257172,
            -0.7644606583671828,
            -0.6587179995856219,
            -0.7254418066056914,
        ];

        let s = Series::try_new(x, y, InterpolationType::CubicSpline).unwrap();
        let actual = s.interpolate(xp);
        assert_approx_eq!(actual, expected, rtol <= 1e-12);
    }

    #[rstest]
    #[case(Series::try_new(vec![1.0], vec![1.0], InterpolationType::Linear), Err(SeriesError::InsufficientPoints(1)))]
    #[case(Series::try_new(vec![1.0], vec![1.0], InterpolationType::CubicSpline), Err(SeriesError::InsufficientPoints(1)))]
    #[case(Series::try_new(vec![1.0, 2.0], vec![1.0], InterpolationType::Linear), Err(SeriesError::DimensionMismatch(2, 1)))]
    #[case(Series::try_new(vec![1.0, 2.0], vec![1.0], InterpolationType::CubicSpline), Err(SeriesError::DimensionMismatch(2, 1)))]
    fn test_series_errors(
        #[case] actual: Result<Series, SeriesError>,
        #[case] expected: Result<Series, SeriesError>,
    ) {
        assert_eq!(actual, expected);
    }

    #[rstest]
    #[case("linear", InterpolationType::Linear)]
    #[case("cubic", InterpolationType::CubicSpline)]
    fn test_interpolation_type_from_str(#[case] input: &str, #[case] expected: InterpolationType) {
        assert_eq!(input.parse::<InterpolationType>().unwrap(), expected);
    }

    #[test]
    fn test_interpolation_type_from_str_unknown() {
        let err = "quadratic".parse::<InterpolationType>().unwrap_err();
        assert_eq!(err.to_string(), "unknown interpolation type: \"quadratic\"");
    }

    #[rstest]
    #[case(InterpolationType::Linear, "linear")]
    #[case(InterpolationType::CubicSpline, "cubic")]
    fn test_interpolation_type_display(#[case] input: InterpolationType, #[case] expected: &str) {
        assert_eq!(input.to_string(), expected);
    }
}