Re: [C++-sig] Question about using IT++ in boost.python

2010-09-07 Thread Jim Bosch
On 09/07/2010 01:25 PM, Junwei Zhang wrote: Hi, I am now considering using boost.python to integrate some IT++(C++ scientific library) codes to python. But when I do some simple example to wrapper this func int vfunc(int n) { vec a = linspace(0,n,10); // already include IT++ and using its

[C++-sig] Question about using IT++ in boost.python

2010-09-07 Thread Junwei Zhang
Hi, I am now considering using boost.python to integrate some IT++(C++ scientific library) codes to python. But when I do some simple example to wrapper this func int vfunc(int n) { vec a = linspace(0,n,10); // already include IT++ and using its namespace vec b= linspace(0,2*n,10);//