[Solved] Fast way to calculate solution of a triangular equation c++ [closed]
You can reformulate your equation as sin (a x) + b sin (c x) – d * x – e == 0 Now, this is a root finding problem. Here is a list for root finding algorithms. Newton’s method is very fast and easy to implement, since the derivative of your equation can be calculated … Read more