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
$ 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