Connecting Tech Pros Worldwide Forums | Help | Site Map

numerics and scientific calculation

Micah
Guest
 
Posts: n/a
#1: Jul 22 '05
Hi,

I'm looking for a C++ package to use for scientific computing. Things that
would be nice:
* Fast matrix multiplication
* Arbitrary precision
* Equation solvers
* Easy to use!!

If you have any favorites (or horror stories) please share them.

Thanks,
Micah



Jacek Dziedzic
Guest
 
Posts: n/a
#2: Jul 22 '05

re: numerics and scientific calculation


Micah wrote:[color=blue]
> Hi,
>
> I'm looking for a C++ package to use for scientific computing. Things that
> would be nice:
> * Fast matrix multiplication
> * Arbitrary precision
> * Equation solvers
> * Easy to use!!
>
> If you have any favorites (or horror stories) please share them.[/color]

For all the matrix + linear equation systems stuff you might
want to try LAPACK. It's in FORTRAN in actuality, but interfaces
OK with C++. You can also get it for free and it is very fast.

Apart from that, try a better group -- this one deals with
Standard C++ and no packages whatsoever.

HTH,
- J.
E. Robert Tisdale
Guest
 
Posts: n/a
#3: Jul 22 '05

re: numerics and scientific calculation


Micah wrote:
[color=blue]
> I'm looking for a C++ package to use for scientific computing.
> Things that would be nice:
> * Fast matrix multiplication
> * Arbitrary precision
> * Equation solvers
> * Easy to use!!
>
> If you have any favorites (or horror stories) please share them.[/color]

Take a look at
The Object-Oriented Numerics Page

http://www.oonumerics.org/oon/

Closed Thread