我想通过SWIG将已知大小和类型的numpy数组传递给C函数
# .py
data = numpy.arange( N , dtype=numpy.int32 )
external_c_function( data )
# .i
extern void external_c_function( int32_t* data );
# .c
void external_c_function( int32_t* data)
{
// ...
}
不幸的是,我会收到错误:
TypeError: in method 'external_c_function', argument 1 of type 'int32_t *'
将numpy数组传递给SWIG的最简单方法是什么?