Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 995 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 995 Bytes

Numerical Method - The Art of Approximation

implement various classic numerical algorithms

This repository is inspired by the course ECE204 from the University of Waterloo. The organization of its content will closely follow the ECE204 course taught by Lecturer D.W. Harder. The repository will implement various numerical algorithms to approximate following categories of mathematic objects

Approximate values of mathematic expressions
Approximate of solutions to algebric equations
Approximate of solutions to analytic equations

Getting Started

$ python -m venv venv (first venv indicate the venv module, second venv is the name of your virtual environment, can be anything)
$ venv\Scripts\activate.bat
$ pip install -r requirements.txt
$ deactivate (to exit the venv)

export new requirements
$ pip freeze > requirements.txt

Demo

linear_interpolation.mp4