⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atanh.gml

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻 GML
字号:
.func atanh
#include <math.h>
double atanh( double x );
.ixfunc2 '&Math' &func
.ixfunc2 '&Trig' &func
.ixfunc2 '&Hyper' &func
.funcend
.desc begin
The &func function computes the inverse hyperbolic tangent of
.arg x.
A domain error occurs if the value of
.arg x
is outside the range (&minus.1,1).
.desc end
.return begin
The &func function returns the inverse hyperbolic tangent value.
.im errnodom
.return end
.see begin
.seelist atanh acosh asinh matherr tanh
.see end
.exmp begin
#include <stdio.h>
#include <math.h>

void main()
  {
    printf( "%f\n", atanh( 0.5 ) );
  }
.exmp output
0.549306
.exmp end
.class WATCOM
.system

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -