/mat

Primary LanguageCMakeMIT LicenseMIT

mat

C++ & python linear algebra library. Developed as part of learning linear algebra.

Table of Contents

Dependencies

The following dependencies are mandatory:

  • C++ compiler
  • CMake (3.12 or greater)

The following dependencies are optional:

Building

Example snippet for building this project:

mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX="~/install/mat/" ..
cmake --build  . -- VERBOSE=1 -j8 all test install

CMake options for configuring this project:

CMake Variable name Description Default
BUILD_TESTING Enable automated testing. OFF
BUILD_DOCUMENTATION Build documentation. OFF