Open dhermes opened 6 years ago
This issue may also help find roots in the presence of poorly conditioned roots, as in #21. In that problem, the issue isn't that finding p(s) = 0
is challenging, but that finding p(s) = 2.125
is difficult because so many nearby values to the true one produce 2.125
due to rounding.
There are three applications I have in mind:
B(s)
for a Bézier curves and producingBhat, err
whereBhat
is the value computed anderr
is a running error.B1(s) - B2(t)
for two Bézier curves and producingDhat, err
. It may be more beneficial to produce the tensor product surface implied by this difference, i.e. ifB1(s) = SUM_i pi B{i,m}(s)
andB2(t) = SUM_j qj B{j,n}(t)
then the tensor product surface will have control netpi - qj
.B(s, t)
for a Bézier surface (or "triangle" or "bivariate") and producingBhat, err
.I have started some investigation of this.