s
Station grid or path-parameter samples. Use a real finite vector; station-grid inputs are usually strictly increasing.
s_t = copp.interpolation.t_to_s_topp3(s, profile, t_s)
s_t = copp.interpolation.t_to_s_topp3(s, profile, t_s, dt=dt, t_sample=t_sample, t0=t0, include_final=include_final)
= copp.interpolation.t_to_s_topp3(S, PROFILE, T_S, dt=DT) samples a uniform grid and delegates to t_to_s_topp3_uniform(). S and T_S must have length N, matching the \(N \times 1\) PROFILE.a and PROFILE.b vectors.
= ...t_to_s_topp3(..., t_sample=T_SAMPLE) samples explicit times and delegates to t_to_s_topp3_samples(). T_SAMPLE has M elements, and S_T is returned as an M-by-1 double column vector.
Exactly one of dt or t_sample must be supplied. New code may call the explicit uniform/samples helpers directly.
sStation grid or path-parameter samples. Use a real finite vector; station-grid inputs are usually strictly increasing.
profileThird-order profile object containing a, b, and stationary-node metadata.
t_sCumulative arrival time at each station, returned as an \(N \times 1\) double column vector.
dtUniform time step used to create sampling times from zero to the final traversal time. Default: []
t_sampleUser-provided time samples where \(\(s(t)\)\) should be evaluated. Default: []
t0Initial time offset added to the cumulative arrival-time grid. Default: 0
include_finalWhether sampling helpers should include the final time sample exactly. Default: true
s_tSampled path parameter values \(s(t)\).