No description
Find a file
2022-06-14 12:26:41 +02:00
doc Add autogenerated documentation 2022-06-14 12:26:41 +02:00
img 🥳 Matrix inversion working ! 2022-06-14 10:50:44 +02:00
include Add autogenerated documentation 2022-06-14 12:26:41 +02:00
test 🥳 Matrix inversion working ! 2022-06-14 10:50:44 +02:00
.clang-format Vector & Matrix 2022-06-09 14:46:07 +02:00
.gitignore Add autogenerated documentation 2022-06-14 12:26:41 +02:00
document.sh Add autogenerated documentation 2022-06-14 12:26:41 +02:00
Doxyfile Add autogenerated documentation 2022-06-14 12:26:41 +02:00
LICENSE Update LICENSE 2022-06-06 07:14:59 +00:00
Makefile 🥳 Matrix inversion working ! 2022-06-14 10:50:44 +02:00
package.json Add autogenerated documentation 2022-06-14 12:26:41 +02:00
README.md 🥳 Matrix inversion working ! 2022-06-14 10:50:44 +02:00
requirements.txt Add autogenerated documentation 2022-06-14 12:26:41 +02:00
TODO 🥳 Matrix inversion working ! 2022-06-14 10:50:44 +02:00

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.