Searched refs:atanh (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.10/ksh-23/ksh/src/lib/libast/uwin/
H A Datanh.c39 static char sccsid[] = "@(#)atanh.c 8.1 (Berkeley) 6/4/93";
54 * atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
58 * atanh(x) is NaN if |x| > 1 with signal;
59 * atanh(NaN) is that NaN with no signal;
60 * atanh(+-1) is +-INF with signal.
63 * atanh(x) returns the exact hyperbolic arc tangent of x nearly rounded.
74 extern double atanh(x) function
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/mathswig/
H A Dmathswig.i28 double atanh(double);
/macosx-10.10/ruby-106/ruby/lib/
H A Dcmath.rb44 alias atanh! atanh
328 def atanh(z) method in class:CMath
331 atanh!(z)
380 module_function :atanh!
381 module_function :atanh
/macosx-10.10/ruby-106/ruby/missing/
H A Dacosh.c8 public domain rewrite of acosh(3), asinh(3) and atanh(3)
75 atanh(double x) function
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_math.rb117 check(0, Math.atanh(Math.sinh(0) / Math.cosh(0)))
118 check(1, Math.atanh(Math.sinh(1) / Math.cosh(1)))
119 check(2, Math.atanh(Math.sinh(2) / Math.cosh(2)))
120 assert_nothing_raised { assert_infinity(Math.atanh(1)) }
121 assert_nothing_raised { assert_infinity(-Math.atanh(-1)) }
122 assert_raise(Math::DomainError) { Math.atanh(+1.0 + Float::EPSILON) }
123 assert_raise(Math::DomainError) { Math.atanh(-1.0 - Float::EPSILON) }
H A Dtest_complex.rb1137 c = Math.atanh(Complex(1, 2))
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/tr1/
H A Dmath.h47 using std::tr1::atanh;
/macosx-10.10/ruby-106/ruby/include/ruby/
H A Dmissing.h72 RUBY_EXTERN double atanh(double);
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/
H A Dlibm.tcl41 {double atanh(double)}
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DMath.pm188 =item atanh
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/tests/
H A Dlibm.test96 {double atanh(double)}
/macosx-10.10/vim-55/runtime/syntax/
H A Dampl.vim81 syn keyword amplBuiltInFunction asinh atan atan2 atanh ceil
H A Dverilogams.vim30 syn keyword verilogamsStatement asinh assign atan atan2 atanh
H A Dgnuplot.vim66 syn keyword gnuplotFunc abs acos acosh arg asin asinh atan atanh atan2
H A Dnastran.vim80 syn keyword nastranDmapImplicit atanh atanh2 char clen clock cmplx concat1
H A Dpov.vim67 syn keyword povFunctions abs acos acosh asc asin asinh atan atan2 atanh ceil cos cosh defined degrees dimensions dimension_size div exp file_exists floor int internal ln log max min mod pow radians rand seed select sin sinh sqrt strcmp strlen tan tanh val vdot vlength vstr vturbulence
H A Dxmath.vim78 syn keyword xmathFunc atanh gabor ls2unc riccati
H A Dmaxima.vim44 syn keyword maximaFunc atan2 atanh atensimp atom atomgrad atrig1 atvalue augcoefmatrix
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Target/
H A DTargetLibraryInfo.h86 /// double atanh(double x);
87 atanh, enumerator in enum:llvm::LibFunc::Func
/macosx-10.10/llvmCore-3425.0.34/lib/Target/
H A DTargetLibraryInfo.cpp59 "atanh",
251 TLI.setUnavailable(LibFunc::atanh);
/macosx-10.10/ruby-106/ruby/
H A Dmath.c284 * Math.atanh(x) -> float
297 if (d0 < -1.0 || +1.0 < d0) domain_error("atanh");
301 d = atanh(d0);
810 rb_define_module_function(rb_mMath, "atanh", math_atanh, 1);
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Dmathfunc.c135 NUMMATHFUNC("atanh", math_func, 1, 1, MF_ATANH | BFLAG(BF_FRACO)),
287 retd = atanh(argd);
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DMathObject.cpp103 putDirectNativeFunctionWithoutTransition(vm, globalObject, Identifier(&vm, "atanh"), 1, mathProtoFuncATanh, NoIntrinsic, DontEnum | Function);
342 return JSValue::encode(jsDoubleNumber(atanh(exec->argument(0).toNumber(exec))));
/macosx-10.10/emacs-93/emacs/src/
H A Dfloatfns.c27 Define HAVE_INVERSE_HYPERBOLIC if you have acosh, asinh, and atanh.
604 DEFUN ("atanh", Fatanh, Satanh, 1, 1, 0,
612 domain_error ("atanh", arg);
615 IN_FLOAT (d = atanh (d), "atanh", arg);
617 IN_FLOAT (d = 0.5 * log ((1.0 + d) / (1.0 - d)), "atanh", arg);
/macosx-10.10/emacs-93/emacs/lisp/calc/
H A Dcalc-lang.el124 ( atanh . calcFunc-arctanh )))
249 ( atanh . calcFunc-arctanh )

Completed in 275 milliseconds

12