boost.python 参数类型不匹配(numpy.int64 -> int)

发布于 2024-10-07 04:44:51 字数 291 浏览 4 评论 0原文

我遇到了这个问题:

Boost.Python.ArgumentError: Python argument types in
    Dirichlet.Observe(int, numpy.int64, float)
did not match C++ signature:
    Observe(unsigned int, unsigned int, double)

看起来足够接近吗?

做了一些替换后,看来中间的参数是问题所在。如何将 numpy.int64 转换为 int?

I'm running into this problem:

Boost.Python.ArgumentError: Python argument types in
    Dirichlet.Observe(int, numpy.int64, float)
did not match C++ signature:
    Observe(unsigned int, unsigned int, double)

Seems close enough?

After doing some replacement, it seems that the middle argument is the problem. How do I convert numpy.int64 to int?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

予囚 2024-10-14 04:44:51

你可以试试...

int(numpyint)

You could you try...

int(numpyint)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文