我在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)in 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 > {
^
=============================================== =
(先生/ Ms./Mrs)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。
答案 0 :(得分:0)
这有效:
%include <std_list.i>
%include <std_complex.i>
%template(ComplexList) std::list<std::complex<double> >;
... (your includes / function declarations)
我认为您的版本(3)实际上也应该有效。奇怪的是它没有。也许是一个SWIG错误。
答案 1 :(得分:0)
为了更简洁,您可以使用整个命名空间:
%include <std_list.i>
%include <std_complex.i>
using namespace std;
%template(ComplexList) list<complex<double> >;
但最初建议的将%template
包含在std
命名空间中的版本并不是一个好主意。