You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Polynomial fitting for a second degree polynomial describing the function of a rockets velocity in terms of time, by finding the respective coefficients with gaussian elimination method implemented.
The Gauss-Jordan Elimination and Ordinary Least Squares Linear Regression is carried out. Unit tests are provided for testing various test cases. Python libraries used are Numpy, Timeit, Unittest, Sklearn, Matplotlib.
This repo discusses various methods for finding the (possibly many) solutions for the system of linear equations AX = b and also discusses about the sensitivity of the solution X using condition number.