我在C++中有一个函数,该函数返回复杂列表:

#include <complex>
std::list< std::complex<double> > func(...);

我应该在“* .i”文件中做什么?

谢谢大家。

=================

以下是详细信息:

我想在x.h中的python中使用的功能:
std::list<std::complex<double> > roots1(const double& d, const double& e);

我尝试了一些方法:

(1)x.i:
%include <std_list.i>
%include <std_complex.i>

比我在IPython中尝试的要多:
tmp = x.roots1(1.0, 2.0)
len(tmp)

我得到:
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-5-9ebf7dab7cd9> in <module>()
----> 1 len(tmp)

TypeError: object of type 'SwigPyObject' has no len()

和:
dir(tmp)

返回:
[
...
'acquire',
'append',
'disown',
'next',
'own']

(2)x.i:
%include <std_list.i>
%include <std_complex.i>
namespace std {
    %template(ComplexDouble)        complex<double>;
}

比,我得到了编译错误:
error: command 'swig' failed with exit status 1
make: *** [py] Error 1

(3)在x.i中:
%include <std_list.i>
%include <std_complex.i>
namespace std {
    %template(ComplexDouble)        list<complex<double> >;
}

要么:
%include <std_list.i>
%include <std_complex.i>
namespace std {
    %template(ComplexDouble)        list<complex>;
}

我得到:
x_wrap.cpp:5673:32: error: ‘complex’ was not declared in this scope
 template <>  struct traits<complex > {
                            ^

===============================================

(先生/女士/夫人)m7thon可以帮助我发现问题。
在我的python上下文中:
Ubuntu: 45~14.04.1
Python:  3.4.3
SWIG:    SWIG Version 2.0.11
         Compiled with g++ [x86_64-unknown-linux-gnu]
         Configured options: +pcre

如果将x.i定义为:
%include <std_list.i>
%include <std_complex.i>
namespace std {
    %template(ComplexList)        list<complex<double> >;
}

会有编译错误。但是如果x.i可以工作:
%include <std_list.i>
%include <std_complex.i>
%template(ComplexList) std::list< std::complex<double> >;

谢谢你m7thon。

最佳答案

这有效:

%include <std_list.i>
%include <std_complex.i>
%template(ComplexList) std::list<std::complex<double> >;
... (your includes / function declarations)

我认为您的版本(3)实际上也应该有效。奇怪的是没有。也许是SWIG错误。

09-07 03:30