我想将矩阵从 C++ 函数返回到 Python 函数。我检查了这个解决方案,这是一个返回数组的例子。
例如,我想返回一个由's10x10
填充的数组。10
函数.cpp:
extern "C" int* function(){
int** information = new int*[10];
for(int k=0;k<10;k++) {
information[k] = new int[10];
}
for(int k=0;k<10;k++) {
for(int l=0;l<10;l++) {
information[k][l] = 10;
}
}
return *information;
}
Python代码是: wrapper.py
import ctypes
from numpy.ctypeslib import ndpointer
lib = ctypes.CDLL('./library.so')
lib.function.restype = ndpointer(dtype=ctypes.c_int, shape=(10,))
res = lib.function()
print res
为了编译这个我使用:
g++ -c -fPIC function.cpp -o function.o
g++ -shared -Wl,-soname,library.so -o library.so function.o
如果soname
不起作用,请使用install_name
:
g++ -c -fPIC function.cpp -o function.o
g++ -shared -Wl,-install_name,library.so -o library.so function.o
运行 python 程序后,python wrapper.py
输出如下:
[10 10 10 10 10 10 10 10 10 10]
只有一行 10 个元素。我想要 10x10 矩阵。我做错了什么?提前致谢。