Skip to content

Latest commit

Β 

History

History
31 lines (26 loc) Β· 785 Bytes

File metadata and controls

31 lines (26 loc) Β· 785 Bytes

C++ Linear Algebra Toolkit πŸ”’

A C++ repository featuring custom implementations of Vector, Matrix, and Linear System Solver classes.

This project demonstrates core programming concepts, object-oriented design, and numerical computing techniques used in engineering and scientific applications.


Repository Structure

first-repo/
│── README.md
β”‚
β”œβ”€β”€ LinearSystemClass/
β”‚   β”œβ”€β”€ main.cpp
β”‚   β”œβ”€β”€ LinearSystem.cpp
β”‚   β”œβ”€β”€ LinearSystem.hpp
β”‚   └── Makefile
β”‚
β”œβ”€β”€ MatrixClass/
β”‚   β”œβ”€β”€ main.cpp
β”‚   β”œβ”€β”€ Matrix.cpp
β”‚   β”œβ”€β”€ Matrix.hpp
β”‚   └── Makefile
β”‚
└── VectorClass/
    β”œβ”€β”€ main.cpp
    β”œβ”€β”€ Vector.cpp
    β”œβ”€β”€ Vector.hpp
    └── Makefile