### 反双曲正切函数(atanh)与反正切函数(atan)的区别 在数学和计算中,`atanh` 和 `atan` 是两个重要的三角函数,它们分别表示反双曲正切和反正切。尽管它们的名称相似,但它们在定义、用途和应用方面存在显著差异。以下是这两个函数的详细比较: ### 1. 定义 - **反正切函数(atan 或 arctan)**: - 定义...
ATANH(atan和atan2区别) 返回参数的反双曲正切值,参数必须介于 -1 到 1 之间(除去 -1 和 1)。反双曲正切值的双曲正切即为该函数的 number 参数值,因此 ATANH(TANH(number)) 等于 number。 语法 ATANH(number) Number -1 到 1 之间的任意实数。 示例 AB 1 公式 说明(结果) 2 =ATANH(0.6492801) 0.649...
atanh, atanhf, atanhl 定义于头文件<math.h> floatatanhf(floatarg); (1)(C99 起) doubleatanh(doublearg); (2)(C99 起) longdoubleatanhl(longdoublearg); (3)(C99 起) 定义于头文件<tgmath.h> #define atanh( arg ) (4)(C99 起)
函数原型 C90 C99 C++98 C++11 double atanh(double x); √ √ float atanhf(float x); √ long double atanhl(long double x); √ float atanh(float x); √ long double atanh(long double x); √头文件:#include <cmath>命名空间:
std::atanh, std::atanh, std::atanhl 定义于头文件<cmath> floatatanh(floatarg); floatatanhf(floatarg); (1)(C++11 起) doubleatanh(doublearg); (2)(C++11 起) longdoubleatanh(longdoublearg); longdoubleatanhl(longdoublearg); (3)(C++11 起)...
double atanh( double x ); float atanhf( float x ); long double atanhl( long double x ); #define atanh(X) // Requires C11 or higher float atanh( float x ); // C++ only long double atanh( long double x ); // C++ only 參數 x 浮點值。 傳回值 函式會 atanh 傳回 的 x反雙...
选择版本: Formulas and Functions 修改这个控件会自动更新这一页面 在使用手册中搜索清除搜索 公式与函数帮助 公式 公式概览 添加或编辑公式 拷贝或移动公式 在公式中引用单元格 函数 函数基础知识 按类别列出的函数列表 财务函数选择提示 用于对值四舍五入的函数 ...
选择版本: Formulas and Functions 修改这个控件会自动更新这一页面 在使用手册中搜索清除搜索 公式与函数帮助 公式 公式概览 添加或编辑公式 拷贝或移动公式 在公式中引用单元格 函数 函数基础知识 按类别列出的函数列表 财务函数选择提示 用于对值四舍五入的函数 ...
atanh atanhf catanhf catanh catanhl 参数 arg-表示双曲扇形面积的浮点值 返回值 若不出现错误,则返回arg的反双曲正切( tanh-1 (arg) 或 artanh(arg) )。 若出现定义域错误,则返回实现定义值(若支持则为 NaN )。 若出现极点错误,则返回±HUGE_VAL、±HUGE_VALF或±HUGE_VALL(带正确符号)。
#include <iostream> #include <cmath> #include <cfloat> #include <cerrno> #include <cfenv> #include <cstring> #pragma STDC FENV_ACCESS ON int main() { std::cout << "atanh(0) = " << std::atanh(0) << '\n' << "atanh(-0) = " << std::atanh(-0.0) << '\n' << "atan...