Tagged Questions
3
votes
1answer
294 views
Accessing C struct array to Python with SWIG
I attempting to call into existing C code from Python. The C code defines a struct B that contains an struct array of As. The C code also defines a function that puts values into the structure when ...
0
votes
2answers
117 views
Swig for java, generating a proxy class from c structure with array member
I'm working with SWIG 2.0 and I'm creating a Java wrapper for an API, as part of this API it has a structure that contains a multidimentional array:
typedef struct mbuf
{
data[2][31]
}
When it ...
1
vote
1answer
99 views
extending global c variable array with swig and python
I have a global variable array in c that I'd like to pull into python. And I'm having difficulties with varout typemap:
/* example.c */
int foo[] = {0, 1};
And here is the very vanilla interface:
...
2
votes
3answers
478 views
Make C++ array of objects iterable in Python
I have searched on the web and didn't get success. I'm wrapping the sample code below to Python (using SWIG):
class atomo {
public:
int i;
atomo(int a) {
i = a;
};
};
class ...
3
votes
2answers
693 views
SWIG/python array inside structure
I've got a structure defined inside header.h that looks like :
typedef struct {
....
int icntl[40];
double cntl[15];
int *irn, *jcn;
....
When I init an object with this ...
0
votes
1answer
450 views
nested structure array access in python using SWIG
I haven't been able to figure out how to access the array elements SubStatus in the following nested structure. I do seem to be able to see the first element, but don't understand how to force ...
2
votes
4answers
2k views
Swig, returning an array of doubles
I know, there are often many ways to solve certain problems. But here I know which way I want to have it, but I am unable to make it work with Python and SWIG...
I have a C-function, which returns me ...
5
votes
4answers
2k views
Fast conversion of C/C++ vector to Numpy array
I'm using SWIG to glue together some C++ code to Python (2.6), and part of that glue includes a piece of code that converts large fields of data (millions of values) from the C++ side to a Numpy ...
2
votes
3answers
727 views
map return type of C++ function to byte[][] in Java
I have a c++ function declared as
unsigned char** classify
I am using the following inteface file in SWIG
%module PWrap
%include "std_string.i"
%include "arrays_java.i"
%apply byte[][] {unsigned ...
0
votes
1answer
419 views
swig-php wrapper uses pointer, c code is an array
I am using SWIG to generate a PHP extension that calls into a 'c' shared lib. I am able to get most things to work except the following situation...
In my 'c' code I declare a function as (Please ...
0
votes
1answer
474 views
Python SWIG arrays
I am wrapping a C module with SWIG for Python. Is there any way to turn all Python lists/tuples whose members are all of the same type (same kind of Swig object) to C arrays?
2
votes
1answer
637 views
SWIG Lua and passing arrays
I currently have the following lua code:
g = engine.CGeometry()
vertexes = {}
vertexes[1] = 0
vertexes[2] = 0
vertexes[3] = 0
vertexes[4] = 0
vertexes[5] = -1
...