Callable object computing \(1/\log10\).
Defined in Header
#include <eve/module/math.hpp>
{
template< eve::value T >
}
constexpr callable_invlog_10_ invlog_10
Callable object computing .
Definition: invlog_10.hpp:49
Lightweight type-wrapper.
Definition: as.hpp:29
Parameters
x
: Type wrapper instance embedding the type of the constant.
Return value
The call eve::invlog_10(as<T>())
returns the inverse of \(\log10\).
#include <eve/module/math.hpp>
#include <eve/wide.hpp>
#include <iostream>
#include <iomanip>
int main()
{
wide_ft wxf;
std::cout << "---- simd" << std::setprecision(9) << std::endl
double xf;
std::cout << "---- scalar" << std::endl
return 0;
}
Wrapper for SIMD registers.
Definition: wide.hpp:65