我基于以下链接为Visual Studio 2008构建了LAPACKE的DLL和库:
http://icl.cs.utk.edu/lapack-for-windows/lapack/
构建LAPACKE之后,我进行了如下测试,并通过了测试:
构建后,我可以使用以下文件:
我在Visual Studio 2008中使用了以下技巧:
现在,我有以下Visual Studio 2008项目:
我的项目中包含以下C++代码段:
当我注释掉#include "lapacke.h"
这一行时,可执行文件就生成了,并且得到了以下控制台输出:
但是,当我不注释掉#include "lapacke.h"
时,出现以下错误:
错误位置是lapacke.h
的第73行,如下所示:
感谢您的帮助。
编辑:
即使在#include <cstdlib>
之前包含#include "lapacke.h"
之后,也会发生相同的错误:
编辑:
在以下链接上,一些人讨论了一个看起来相关的问题:
http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=2&t=2284
http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=2&t=4221
编辑
在lapacke.h
文件中,以下语句可用于复杂类型。
/* Complex types are structures equivalent to the
* Fortran complex types COMPLEX(4) and COMPLEX(8).
*
* One can also redefine the types with his own types
* for example by including in the code definitions like
*
* #define lapack_complex_float std::complex<float>
* #define lapack_complex_double std::complex<double>
*
* or define these types in the command line:
*
* -Dlapack_complex_float="std::complex<float>"
* -Dlapack_complex_double="std::complex<double>"
*/
#ifndef LAPACK_COMPLEX_CUSTOM
/* Complex type (single precision) */
#ifndef lapack_complex_float
#include <complex.h>
#define lapack_complex_float float _Complex
#endif
#ifndef lapack_complex_float_real
#define lapack_complex_float_real(z) (creal(z))
#endif
#ifndef lapack_complex_float_imag
#define lapack_complex_float_imag(z) (cimag(z))
#endif
lapack_complex_float lapack_make_complex_float( float re, float im );
/* Complex type (double precision) */
#ifndef lapack_complex_double
#include <complex.h>
#define lapack_complex_double double _Complex
#endif
#ifndef lapack_complex_double_real
#define lapack_complex_double_real(z) (creal(z))
#endif
#ifndef lapack_complex_double_imag
#define lapack_complex_double_imag(z) (cimag(z))
#endif
lapack_complex_double lapack_make_complex_double( double re, double im );
#endif
我修改了头文件,如下所示:
但是,我收到以下错误:
上面的错误发生在以下位置:
我不确定如何解决此错误。
编辑:
最后通过添加
#include <complex>
解决了该问题,如下所示。顺便说一句,这篇文章帮助我弄清楚了:MinGW error: 'min' is not a member of 'std'重建没有任何问题:
最佳答案
Lapacke
是C代码,而不是C++。 Visual C++仅有限地支持C,不支持_Complex
。在C++中,您将使用std::complex<float>
。
根据显示的代码,定义LAPACK_COMPLEX_CUSTOM
可能会跳过_Complex
的使用。
PS。请在您的问题中包含源代码,而不是图像。
关于c++ - 严重错误C1083:无法打开包含文件: 'complex.h':没有这样的文件或目录..\lapacke\include\lapacke.h,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26933589/