由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Matrix calculation in C++
相关主题
有没有Gnu Scientific Library的non GNU替代物?Visual C++ 高手帮忙,一个Link Error
请问:稀疏矩阵运算有什么好的C++库?求问C++问题
求助:Wavelet 的 library (转载)boost::python::numpy干起
C Library (一个统计方面的) 安装一问从最近讨论,发现往MAC migrate
大家都是用什么linear algebra的库?语言发展是由经济学原则推动的
有没有VC++下的矩阵运算的库类?Excel VSTO 4.0 project deveopled in VS2010 migration to VST (转载)
matlab C API 怎么用啊??有没有for VC的Math 库?
有人用DEV-C++吗?问个GSL的问题
相关话题的讨论汇总
话题: c++话题: gsl话题: atlas话题: lapack
进入Programming版参与讨论
1 (共1页)
e*******l
发帖数: 55
1
I'm migrating my MATLAB codes into C++ to speed up the calculation. Can
anyone recommend me some libraries for linear algebra?
I am considering the following choices:
1. uBLAS in the BOOST library
2. GNU Scientific Library (GSL)
3. Copy the codes from Numerical Recipes
Does anyone know which one is better? Or any other suggestions? Thanks
.
e***a
发帖数: 18
2
co-ask:
can anybody suggest anything here?
thanks,
P********e
发帖数: 2610
3
search matrix.h on google
whole bunch of open source, pick one depend upon your need

【在 e***a 的大作中提到】
: co-ask:
: can anybody suggest anything here?
: thanks,

y*******g
发帖数: 6599
4
intel MKL
但不是free的

【在 e*******l 的大作中提到】
: I'm migrating my MATLAB codes into C++ to speed up the calculation. Can
: anyone recommend me some libraries for linear algebra?
: I am considering the following choices:
: 1. uBLAS in the BOOST library
: 2. GNU Scientific Library (GSL)
: 3. Copy the codes from Numerical Recipes
: Does anyone know which one is better? Or any other suggestions? Thanks
: .

s******e
发帖数: 285
5
LAPACK

【在 e*******l 的大作中提到】
: I'm migrating my MATLAB codes into C++ to speed up the calculation. Can
: anyone recommend me some libraries for linear algebra?
: I am considering the following choices:
: 1. uBLAS in the BOOST library
: 2. GNU Scientific Library (GSL)
: 3. Copy the codes from Numerical Recipes
: Does anyone know which one is better? Or any other suggestions? Thanks
: .

k******n
发帖数: 35
6
Don't use Numerical Recipes, it has worst performance.
GSL is a good choice, but has to be compiled with some top libs like MKL
which is not free. You can compile GSL by using ATLAS which is a little
slower than MKL, but free. Essentially, ATLAS is an optimized BLAS + part of
LAPACK.
If you don't mind call FORTRAN from C++, you can call BLAS/LAPACK or ATLAS
directly.
k******n
发帖数: 35
7
Don't use Numerical Recipes, it has worst performance.
GSL is a good choice, but has to be compiled with some top libs like MKL
which is not free. You can compile GSL by using ATLAS which is a little
slower than MKL, but free. Essentially, ATLAS is an optimized BLAS + part of
LAPACK.
If you don't mind call FORTRAN from C++, you can call BLAS/LAPACK or ATLAS
directly.
g*********e
发帖数: 42
8
clapack 和 lapack++
从网上down的包里有vc的工程文件,
用vc7.1编译,编译出的lib文件放在编译器的
lib目录里,dll是动态链接库,可以放在程序
目录里。
1 (共1页)
进入Programming版参与讨论
相关主题
问个GSL的问题大家都是用什么linear algebra的库?
opinions on boost.multiarray?有没有VC++下的矩阵运算的库类?
急问:VS2008里如何调用DLLmatlab C API 怎么用啊??
是不是 GSL 不能解 DAE 啊?有人用DEV-C++吗?
有没有Gnu Scientific Library的non GNU替代物?Visual C++ 高手帮忙,一个Link Error
请问:稀疏矩阵运算有什么好的C++库?求问C++问题
求助:Wavelet 的 library (转载)boost::python::numpy干起
C Library (一个统计方面的) 安装一问从最近讨论,发现往MAC migrate
相关话题的讨论汇总
话题: c++话题: gsl话题: atlas话题: lapack