mirror of
https://framagit.org/s1gm4/lib/algae.git
synced 2026-07-11 15:47:41 +02:00
No description
| doc | ||
| img | ||
| include | ||
| test | ||
| .clang-format | ||
| .gitignore | ||
| document.sh | ||
| Doxyfile | ||
| LICENSE | ||
| Makefile | ||
| package.json | ||
| README.md | ||
| requirements.txt | ||
| TODO | ||
Algae
C++ Library for Linear Algebra.
Vector and Matrix standard operations.
Installation
git clone git@framagit.org:1ibre/lib/algae.git
cd algae
Usage
// ./src/main.cpp
#include <iostream>
#include "./path/to/Matrix.hpp"
// ...
Matrix<int> m(2, 2);
m.set(1, 1, 2) // Set component (2, 2) to value 2
std::cout << m.at(1, 1) << std::endl;
std::cout << m.toString() << std::endl;
// ...
g++ ./src/main.cpp -lm
Authors
Made with ♥ by Samuel ORTION.
Contributing
Pull requests are welcome.
License
This work is licensed under the MIT License.