使用的#include等效 在NumPy的(equivalent of using #incl

2019-10-18 18:11发布

我有一个旧的代码,它使用数字,我想换与numpy的。

有一些C代码也使用了以下内容:

    #include <Numeric/arrayobject.h>

我想要做的使用numpy的一样,是有办法做到这一点?

Answer 1:

所以,如果有人有兴趣-to继续在旧系统数字使用arrayobject.h像

请执行下列操作:

      Replace <Numeric/arrayobject.h> with <numpy/arrayobject.h>

但新arrayobject.h处于不同的位置,这样的数字更新setup.py如下:

添加以下

     import numpy as NU

然后在设置(仍然是setup.py)添加以下

    include_dirs = [NU.get_include()], 


文章来源: equivalent of using #include in Numpy