在我关于How to use float ** in Python with Swig?的问题没有成功之后,我开始认为swig可能不是首选的武器我需要一些c函数的绑定其中一个函数使用浮点**你有什么建议C型?
接口文件:

extern int read_data(const char *file,int *n_,int *m_,float **data_,int **classes_);

最佳答案

我已经在几个项目中使用了ctypes,并且对结果非常满意我个人还不需要指针包装器,但理论上,您应该能够执行以下操作:

from ctypes import *

your_dll = cdll.LoadLibrary("your_dll.dll")

PFloat = POINTER(c_float)
PInt   = POINTER(c_int)

p_data    = PFloat()
p_classes = PInt()
buff      = create_string_buffer(1024)
n1        = c_int( 0 )
n2        = c_int( 0 )

ret = your_dll.read_data( buff, byref(n1), byref(n2), byref(p_data), byref(p_classes) )

print('Data:    ', p_data.contents)
print('Classes: ', p_classes.contents)

10-06 08:51