作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不明白 digamma function of boost可以在程序内部使用。任何例子,不胜感激。我包括 boost
#include <boost/math/special_functions/digamma.hpp>
但是函数调用 digamma(x)
,其中 x 是一个 double
给出了以下错误:
error: there are no arguments to ‘digamma’ that depend on a template parameter, so a declaration of ‘digamma’ must be available [-fpermissive]
最佳答案
举个例子: http://cpp.sh/7bdu
#include <boost/math/special_functions/digamma.hpp>
#include <iostream>
int main() {
std::cout << boost::math::digamma(3.14) << "\n";
}
编辑:问题已编辑并带有错误消息。错误消息意味着编译器没有找到 digamma
的定义,因为您没有包含命名空间位 boost::math::
。
关于c++ - 如何在boost中使用digamma函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39390773/
我是一名优秀的程序员,十分优秀!