0
votes
0answers
47 views

Relation between Hermite interpolation and Bezier curve

I will really appreciate if someone can explain me the relation between Hermite interpolation and Bezier Curve. For example, $p(0)=1,p(3)=2,p'(0)=1,p'(3)=1$, how do we do the Hermite interpolation? ...
0
votes
0answers
23 views

I came across a paradoxical situation when applying Casteljau algorithm

The example is like this: Given 3 points $p(0)=2,p(1)=1,p(3)=1$.The question asks us to apply the Casteljau algorithm to evaluate the Bezier curve b(u) for the given Bezier polygon at $u=2$. I did the ...
1
vote
1answer
48 views

Relation between Bezier Curve, Bernstein polynomial and control polygon

I am currently learning numerical method and I am somehow confused about the Bezier Curve, Bernstein polynomial and control polygon. For example, if we have a curve $p(u)=-12u^2+12u+1$,and we want to ...
3
votes
0answers
157 views

Approximating a system of differential equations as a Bézier curve

I am looking for a general transform to approximate the solution to an n-dimensional system of differential equations and initial conditions as a cubic or quadratic Bézier curve. Sorry if my ...