MatrixCalculator is a desktop matrix calculator application built with Qt, QML, and C++.
The project provides a simple graphical interface for performing common matrix operations in an interactive way.
- Matrix input and display through a Qt/QML frontend
- C++ backend logic for matrix computation
- Supports a desktop application workflow using Qt Creator
- Modular project structure with separate model, view, and background components
- QML / Qt Quick
- C++
- CMake
- Qt Creator
MatrixMoo/
├── CMakeLists.txt
├── appMatrixMoo/
│ ├── Header Files/
│ │ ├── matrixbackground.h
│ │ ├── matrixmodel.h
│ │ └── view.h
│ ├── Source Files/
│ │ ├── main.cpp
│ │ ├── matrixbackground.cpp
│ │ ├── matrixmodel.cpp
│ │ └── view.cpp
│ ├── Main.qml
│ └── MatrixEntry.qml