cotila

Compile-time linear algebra library for modern C++

brewmacoslinux
Try with needOr install directly
Source

About

Compile-time linear algebra system for C++

Commands

cotila

Examples

Include cotila headers in C++ project for compile-time matrix operations$ #include <cotila/cotila.hpp>
Use cotila for compile-time vector and matrix computations$ constexpr auto result = cotila::dot(vector1, vector2);
Perform matrix multiplication at compile time with cotila$ constexpr auto product = cotila::multiply(matrix_a, matrix_b);