Templated Numerics

Victor Liu

September 27, 2009


A set of templated class and functions for numerical computation in C++.

News

Examples of what you might use it for

By templating numerical algorithms, many important auxilliary types of computations become possible.

What this is not

This code is not meant to be the fastest. The use of templates necessitates certain tradeoffs in how numerical algorithms are coded in order to accomodate the most types.

Practical performance and convergence considerations also necessitate algorithmic modifications that prevent a fully generic type specialization. It is hoped that the balance achieved is simply generally useful.

Unique features

Download