1

I've used boost library so far.

But, I'd like to use matrix operation and random numbers.

Please, let me know useful c++ library.

thanks.

akiniwa
  • 617
  • 8
  • 18
  • 2
    Why not [Boost.Random](http://www.boost.org/doc/libs/1_51_0/doc/html/boost_random.html) and [Boost.Matrix](http://www.boost.org/doc/libs/1_51_0/libs/numeric/ublas/doc/matrix.htm)? – David Schwartz Oct 04 '12 at 23:02
  • 1
    C++11 includes good random number generators. For linear algebra you could use Boost.UBLAS or Blitz++. – Philipp Oct 04 '12 at 23:15

1 Answers1

6

I really love the GSL library. although there are also the following, all of which are very good and very powerful:

You can also check out a bigger list here. However if you prefer boost, you can use Boost.Random and Boost.Matrix.

Rivasa
  • 6,510
  • 3
  • 35
  • 64