Skip to main content

compose_warps

Function compose_warps 

Source
pub fn compose_warps(
    gamma1: &[f64],
    gamma2: &[f64],
    argvals: &[f64],
) -> Vec<f64>
Expand description

Compose two warping functions: (γ₁ ∘ γ₂)(t) = γ₁(γ₂(t)).

§Arguments

  • gamma1 — Outer warping function (length m)
  • gamma2 — Inner warping function (length m)
  • argvals — Evaluation points (length m)