So I have an equation:
$$F(s,t,u,v)=A$$
Where $A$ is some given value. Is there an iterative method to discover the four parameters that will obtain my given $A$?
If it helps, my function $F$ is a quintic bezier where most of the parameters are determined. I have isolated just these four that are required to fit the value $A$.
$$Q(t)=R(1-t)^5+5S(1-t)^4t+10T(1-t)^3t^2+10U(1-t)^2t^3+5V(1-t)t^4+Wt^5$$
$R,S,T,U,V,W$ are vectors where $R$ and $W$ are known, I have isolated only a single element in each of $S,T,U,V$ that vary as parameters.
Any thoughts?