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
The QuadraticSpline description in the docs now reads:
Splines are a local interpolation method, meaning that the curve in a given spot is only affected by the points nearest to it.
That is true for the dependency of a spline curve on the control points. But for QuadraticSpline (and CubicSpline) we do not use the data directly as the control points, but solve for the control points to fit the data. This can lead to non-local influence, case and point:
using DataInterpolations
using Plots
t =1:10
u =collect(1.0:10)
p =plot()
for u₆ inrange(6, 7, length =10)
u[6] = u₆
A =QuadraticSpline(u, t)
plot!(A)
end
p
The text was updated successfully, but these errors were encountered:
The
QuadraticSpline
description in the docs now reads:That is true for the dependency of a spline curve on the control points. But for
QuadraticSpline
(andCubicSpline
) we do not use the data directly as the control points, but solve for the control points to fit the data. This can lead to non-local influence, case and point:The text was updated successfully, but these errors were encountered: