You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Finds the times at which a component of the Hermite interpolant for the anchors assumes a given value and the derivatives at those points (allowing to distinguish upwards and downwards threshold crossings).
275
+
276
+
Parameters
277
+
----------
278
+
i : integer
279
+
The index of the component.
280
+
value : float
281
+
The value that shall be assumed
282
+
beginning : float or `None`
283
+
Beginning of the time interval for which positions are returned. If `None`, the time of the first anchor is used.
284
+
end : float or `None`
285
+
End of the time interval for which positions are returned. If `None`, the time of the last anchor is used.
286
+
287
+
Returns
288
+
-------
289
+
positions : list of pairs of floats
290
+
Each pair consists of a time where `value` is assumed and the derivative (of `component`) at that time.
Class for a cubic Hermite Spline of one variable (time) with `n` values. This behaves like a list with additional functionalities and checks. Note that the times of the anchors must always be in ascending order.
Finds the times at which a component of the spline assumes a given value and the derivatives at those points (allowing to distinguish upwards and downwards threshold crossings). This will not work well if the spline is constantly at the given value for some interval.
661
+
662
+
Parameters
663
+
----------
664
+
i : integer
665
+
The index of the component.
666
+
value : float
667
+
The value that shall be assumed
668
+
beginning : float or `None`
669
+
Beginning of the time interval for which solutions are returned. If `None`, the time of the first anchor is used.
670
+
end : float or `None`
671
+
End of the time interval for which solutions are returned. If `None`, the time of the last anchor is used.
672
+
673
+
Returns
674
+
-------
675
+
positions : list of pairs of floats
676
+
Each pair consists of a time where `value` is assumed and the derivative (of `component`) at that time.
0 commit comments