https://github.com/ilanprice/linear-algebra-library-in-cplusplus
This code was developed for the 'C++ for scientific computing' elective as part of the MSc in Mathematical Modeling and Scientific Computing at the University of Oxford.
https://github.com/ilanprice/linear-algebra-library-in-cplusplus
Last synced: 20 days ago
JSON representation
This code was developed for the 'C++ for scientific computing' elective as part of the MSc in Mathematical Modeling and Scientific Computing at the University of Oxford.
- Host: GitHub
- URL: https://github.com/ilanprice/linear-algebra-library-in-cplusplus
- Owner: IlanPrice
- Created: 2017-07-18T20:59:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-18T21:18:43.000Z (almost 9 years ago)
- Last Synced: 2025-02-25T01:41:48.688Z (over 1 year ago)
- Language: C++
- Size: 517 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linear-Algebra-Library-in-C-
This code was developed for the 'C++ for scientific computing' elective as part of the MSc in Mathematical Modeling and Scientific Computing at the University of Oxford.
The report included gives a thorough description of the project and the code produced. The Matrix and Vector class together with a library of friend functions are capable of a wide array of numerical linear algebra and in particular, solving linear systems of equations, of the form Ax = b.
The Convergence.cpp file was used to produce the data and results shown in the report.
The use_vectors.cpp file is a mess, but was used to test parts of each function as the code was developed.