Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

sam20908/mpp

Repository files navigation

mpp

Not actively maintained anymore, but I will try to work on it when I have time.


A modern C++ matrix library

Build Status

Tested Compilers:

Table of contents

Just getting started? Go here!

When you know the basics of how the library works, you can move on to these:

  • Learn about extra iterator functionalities here
  • Learn about algorithms here
  • Learn about utilities here
  • Learn about customizations here

FAQ

Why assertions instead of exceptions?

The operations have mathematical preconditions, which means it's safe to assume that the user knows what they're doing, but assertions can still be triggered in debug mode.