Numerical-Method: Numerical methods, is approximation fast solution for mathematical problems. Such problems can be in any field in engineering. So any result you get from it is approximated not exact, it give you the solution faster than normal ones, also it’s easy to be programmed.
Least-Squares-Method: The method of least squares is a standard approach in regression analysis to approximate the solution of overdetermined systems by minimizing the sum of the squares of the residuals made in the results of every single equation. The most important application is in data fitting.
Following curve is used for data fitting:
- Straight Line (y=mx+c)
- Second Degree Parabola (y=ax2+bx+c or y=a+bx+cx2)
- Exponential Equation (y=aebx)
- Curve y=abx and
- Another curve y=axb
- Python 3.x
Open command prompt and type
git clone https://github.com/MShawon/Numerical-Method.git
cd Numerical-Method
pip install -r requirements.txt
Open command prompt in Numerical-Method folder and type
python leastSquareMethod.py