Simplex methods and internal point methods take place. One is not better or faster than in general, and you will find that each method works better on different classes of problems.
In terms of codes, the open-source Coin-OR project, Clp has Simplex, Dual Simplex, and internal point methods implemented in C ++.
However, if you just want to solve a system of linear or quadratic equations of the form f (x) = 0, then this is not at all what you want. If you need a linear system, then you need to understand direct or iterative linear solvers. If the problem is non-linear, you should study Newton or quasi-Newton methods.
Good luck.
source share