Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 1 KB

README.md

File metadata and controls

34 lines (29 loc) · 1 KB

Matrix Operations in C++

This repository contains a C++ program that demonstrates various matrix operations using classes. Below are the operations included:

  • Matrix Addition
  • Matrix Subtraction
  • Matrix Multiplication
  • Scalar Multiplication
  • Transpose of a Matrix
  • Determinant Calculation
  • Inverse of a Matrix
  • Checking for Symmetry
  • Checking for Identity Matrix
  • Converting to Row Echelon Form
  • Converting to Reduced Row Echelon Form
  • Eigenvalue and Eigenvector Calculation

How to Use

  1. Clone the repository to your local machine.
  2. Compile and run matrix_operations.cpp.
  3. Follow the on-screen instructions to perform different matrix operations.

Feel free to explore and modify the code as needed!

Instructions:

1.Clone the Repository:

git clone <repository_url>

2.Compile and Run: Compile the matrix_operations.cpp file using a C++ compiler (e.g., g++). Run the compiled executable. 3.Follow On-screen Instructions: The program will guide you through various matrix operations.