Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 804 Bytes

File metadata and controls

12 lines (8 loc) · 804 Bytes

EP501_python

Python scripts for EP501. This repository is very much a work-in-progress. I will be updating it throughout the semester as I port more of my codes from the MATLAB repository for EP501 over to python. Many of the MATLAB codes will eventually be ported, but I can't gaurantee that they all will by the end of the semester. Either way you are free to use python to complete your assignments.

Codes updated for FA2020 semester

Numerical linear algebra

  1. located in ./linear_algebra/
  2. illustrates and checks various methods for solving matrix problems
  3. contains python modules for elimination (elimtools.py) and iterative solutions (ittools.py) to linear systems of equations.
  4. contains example scripts showing use of simple elimination and Gaussian elimination.