命名空间
变体
操作

std::expint,std::expintf,std::expintl

来自 cppreference.com
 
 
 
 
定义在头文件 <cmath>
(1)
float       expint ( float num );

double      expint ( double num );

long double expint ( long double num );
(自 C++17 起)
(直到 C++23)
/* 浮点类型 */ expint( /* 浮点类型 */ num );
(自 C++23 起)
float       expintf( float num );
(2) (自 C++17 起)
long double expintl( long double num );
(3) (自 C++17 起)
定义在头文件 <cmath>
template< class Integer >
double      expint ( Integer num );
(A) (自 C++17 起)
1-3) 计算 num指数积分 库为所有 cv 无限定浮点类型提供 std::expint 的重载作为参数 num 的类型。(自 C++23 起)
A) 为所有整数类型提供其他重载,这些类型被视为 double

内容

[编辑] 参数

num - 浮点或整数值

[编辑] 返回值

如果未发生错误,则返回 num 指数积分的值,即 -
-num
e-t
t
dt

[编辑] 错误处理

错误可能会按 math_errhandling 中指定的报告。

  • 如果参数为 NaN,则返回 NaN 且不会报告域错误。
  • 如果参数为 ±0,则返回 -∞。

[编辑] 注释

不支持 C++17 但支持 ISO 29124:2010 的实现,如果 __STDCPP_MATH_SPEC_FUNCS__ 由实现定义为至少为 201003L 的值,并且如果用户在包含任何标准库头文件之前定义 __STDCPP_WANT_MATH_SPEC_FUNCS__,则提供此函数。

不支持 ISO 29124:2010 但支持 TR 19768:2007 (TR1) 的实现,在头文件 tr1/cmath 和命名空间 std::tr1 中提供此函数。

此函数的实现也可以 在 boost.math 中获得

其他重载不需要完全按照 (A) 提供。它们只需要足以确保对于其整数类型的参数 numstd::expint(num)std::expint(static_cast<double>(num)) 具有相同的效果。

[编辑] 示例

#include <algorithm>
#include <cmath>
#include <iostream>
#include <vector>
 
template<int Height = 5, int BarWidth = 1, int Padding = 1, int Offset = 0, class Seq>
void draw_vbars(Seq&& s, const bool DrawMinMax = true)
{
    static_assert(0 < Height and 0 < BarWidth and 0 <= Padding and 0 <= Offset);
 
    auto cout_n = [](auto&& v, int n = 1)
    {
        while (n-- > 0)
            std::cout << v;
    };
 
    const auto [min, max] = std::minmax_element(std::cbegin(s), std::cend(s));
 
    std::vector<std::div_t> qr;
    for (typedef decltype(*std::cbegin(s)) V; V e : s)
        qr.push_back(std::div(std::lerp(V(0), 8 * Height,
                                        (e - *min) / (*max - *min)), 8));
 
    for (auto h{Height}; h-- > 0; cout_n('\n'))
    {
        cout_n(' ', Offset);
 
        for (auto dv : qr)
        {
            const auto q{dv.quot}, r{dv.rem};
            unsigned char d[]{0xe2, 0x96, 0x88, 0}; // Full Block: '█'
            q < h ? d[0] = ' ', d[1] = 0 : q == h ? d[2] -= (7 - r) : 0;
            cout_n(d, BarWidth), cout_n(' ', Padding);
        }
 
        if (DrawMinMax && Height > 1)
            Height - 1 == h ? std::cout << "┬ " << *max:
                          h ? std::cout << "│ "
                            : std::cout << "┴ " << *min;
    }
}
 
int main()
{
    std::cout << "Ei(0) = " << std::expint(0) << '\n'
              << "Ei(1) = " << std::expint(1) << '\n'
              << "Gompertz constant = " << -std::exp(1) * std::expint(-1) << '\n';
 
    std::vector<float> v;
    for (float x{1.f}; x < 8.8f; x += 0.3565f)
        v.push_back(std::expint(x));
    draw_vbars<9, 1, 1>(v);
}

输出

Ei(0) = -inf
Ei(1) = 1.89512
Gompertz constant = 0.596347
                                          █ ┬ 666.505
                                          █ │
                                        ▆ █ │
                                        █ █ │
                                      █ █ █ │
                                    ▆ █ █ █ │
                                ▁ ▆ █ █ █ █ │
                            ▂ ▅ █ █ █ █ █ █ │
▁ ▁ ▁ ▁ ▁ ▁ ▁ ▂ ▂ ▃ ▃ ▄ ▆ ▇ █ █ █ █ █ █ █ █ ┴ 1.89512

[编辑] 外部链接

Weisstein,Eric W. “指数积分。” 来自 MathWorld - Wolfram 网络资源。