The problem is the following:
Having a bezier curve B(t) we have coordinate x from the curve, and we need to obtain the y values from it, hence we need to compute the t values.
What is the fastest way to obtain the parametric value t of a bezier curve (not necessarily cubic).
Since I'm doing a realtime application it is necessary that the calculation is as fast and efficient as possible. So if you referred the method is much appreciated.
Solution used
Newton's method was the preferred method to finding the parametric values. The speed of the calculations are averaged at .0004 seconds in matlab wich is very practical. This is due to 2 things:
The bezier curve is already restricted to be an ordered set in x and y. Since of this restrictions it converges quite fast
The real time calculations uses the previews roots for the method the new curve, hence they are quite close thus helping in the convergence.
Thanks for the help.