MatrixHelper is a C++ program that provides various matrix operations. It allows you to perform matrix addition, subtraction, multiplication, and more. It was created by a student for students and beyond.
Before you can build and run MatrixHelper, ensure that you have the following prerequisites installed on your system:
- C++ Compiler: Make sure you have a C++ compiler installed. You can use GCC or Clang.
- CMake: CMake is a build system generator. You'll need it to generate build files.
- Make: Make is a build automation tool. You'll need it to compile the program.
Follow these steps to build and run MatrixHelper on your system:
-
Clone the Repository:
git clone https://github.com/PashaKryvulets/MatrixHelper.git cd MatrixHelper
-
Generate Build Files:
mkdir build cd build cmake ..
-
Compile the Program:
make
-
Run MatrixHelper:
./MatrixHelper
After building and running MatrixHelper, follow the on-screen instructions to perform various matrix operations. You can choose options for addition, subtraction, multiplication, and more. The program will guide you through entering matrix dimensions and values.
MatrixHelper is released under the MIT License.
If you'd like to contribute to MatrixHelper, feel free to open an issue or submit a pull request on the GitHub repository.
Enjoy using MatrixHelper for your matrix calculations!