blaze

High-performance C++ math library for dense and sparse arithmetic

brewmacoslinux
Try with needOr install directly
Source

About

High-performance C++ math library for dense and sparse arithmetic

Commands

blaze

Examples

Include Blaze headers in C++ project for matrix operations$ #include <blaze/Blaze.h> using namespace blaze; DynamicMatrix<double> A(10, 5);
Compile C++ code using Blaze library$ g++ -std=c++14 -O3 myprogram.cpp -o myprogram -I$(brew --prefix blaze)/include
Use Blaze for sparse matrix computations in numerical code$ g++ -std=c++14 sparse_math.cpp -o sparse_math -I$(brew --prefix blaze)/include -march=native