• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Matrix libraries in C++ and C#

Daniel Duffy

C++ author, trainer
Joined
10/4/07
Messages
10,157
Points
648
I am investigating what the open source libraries are. I know

Eigen
Boost uBLAS
Atlas

and maybe

Alglib
CERN ROOT(?)


Are there others you use? Which functionality do you need in these libraries?
 

That looks like a good start, in particular the functionality offered by scipy. The C# library is not clear what it actually offers on top of the different matrix patterns.

Most of the libraries seem to concentrate on direct matrix methods.

There are two issues (at least) 1) using matrix storage structures 2) building matrix algorithms on top of 1).
 
Back
Top