Searched refs:sinh (Results 1 - 25 of 66) sorted by relevance

123

/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/library/
H A Dfmath.tcl21 sin sinh sqrt tan tanh fmod pow atan2 abs double int round
35 proc sinh x {uplevel 1 [list expr sinh($x)]} procedure
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dcmath.rb33 alias sinh! sinh
161 cos!(z.real) * sinh!(z.imag))
176 -sin!(z.real) * sinh!(z.imag))
199 def sinh(z) method in class:CMath
202 sinh!(z)
204 Complex(sinh!(z.real) * cos!(z.imag),
220 sinh!(z.real) * sin!(z.imag))
234 sinh(z) / cosh(z)
360 module_function :sinh!
[all...]
/macosx-10.9.5/swig-10/Lib/
H A Dmath.i39 extern double sinh(double x);
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/mathswig/
H A Dmathswig.i24 double sinh(double);
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_math.rb91 check(0, Math.sinh(0))
92 check((Math::E ** 1 - Math::E ** -1) / 2, Math.sinh(1))
93 check((Math::E ** 2 - Math::E ** -2) / 2, Math.sinh(2))
97 check(Math.sinh(0) / Math.cosh(0), Math.tanh(0))
98 check(Math.sinh(1) / Math.cosh(1), Math.tanh(1))
99 check(Math.sinh(2) / Math.cosh(2), Math.tanh(2))
117 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)))
H A Dtest_complex.rb1077 c = Math.sinh(Complex(1, 2))
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/tests/
H A Dlibm.test28 acos cos hypot sinh
34 acos - asin - atan - ceil - cos - cosh - exp - floor - log - log10 - sin - sinh -
92 {double sinh(double)}
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/tests/
H A Dfmath.test5 # acos, asin, atan, cos, sin, tan, cosh, sinh, tanh,
82 Test fmath-1.10 {sinh tests} {
83 fchecknum [sinh .25+10] 14141.3
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/map/
H A Dmap_slippy.tcl110 set lat [expr {$radtodeg * (atan(sinh($pi * (1 - 2 * $row / double($tiles)))))}]
132 set lat [expr {$radtodeg * (atan(sinh($pi * (1 - 2 * $y / $length))))}]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Dqcomplex.tcl117 return [list [expr {cos($c)*cosh($d)}] [expr {-sin($c)*sinh($d)}]]
121 return [list [expr {sin($c)*cosh($d)}] [expr {cos($c)*sinh($d)}]]
H A Dexponential.tcl245 # Value of the integral sinh(x)/x from 0 to x
255 return [expr {sinh($x)/$x}]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/tr1/
H A Dmath.h90 using std::tr1::sinh;
/macosx-10.9.5/ruby-104/ruby/
H A Dmath.c204 sinh(double x) function
212 * Math.sinh(x) -> float
222 return DBL2NUM(sinh(RFLOAT_VALUE(x)));
229 return sinh(x) / cosh(x);
747 exp1(sinh)
805 rb_define_module_function(rb_mMath, "sinh", math_sinh, 1);
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/
H A Dlibm.tcl37 {double sinh(double)}
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Plugin/
H A DMath.pm168 =item sinh
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Plugin/
H A DMath.pm168 =item sinh
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dampl.vim84 syn keyword amplBuiltInFunction sinh sqrt tan tanh trunc
H A Dtsscl.vim137 " Hperbolic functions (sinh, cosh, tanh)
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
70 syn keyword povJuliaFunctions acosh asinh atan cosh cube pwr reciprocal sinh sqr tanh
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Target/
H A DTargetLibraryInfo.h263 /// double sinh(double x);
264 sinh, enumerator in enum:llvm::LibFunc::Func
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/examples/math/
H A Dbigfloat.demo.tcl198 addButtonOne sinh
/macosx-10.9.5/libstdcxx-60/src/
H A Dcompatibility.cc468 _GLIBCXX_MATHL_WRAPPER1 (sinh, GLIBCXX_3.4);
/macosx-10.9.5/emacs-92/emacs/src/
H A Dfloatfns.c25 frexp, ldexp, log, log10, modf, pow, sin, sinh, sqrt, tan, tanh.
116 /* Avoid traps on VMS from sinh and cosh.
121 #undef sinh macro
123 #define sinh(x) ((exp(x)-exp(-x))*0.5) macro
636 DEFUN ("sinh", Fsinh, Ssinh, 1, 1, 0,
644 range_error ("sinh", arg);
646 IN_FLOAT (d = sinh (d), "sinh", arg);
/macosx-10.9.5/ruby-104/ruby/enc/unicode/
H A Dname2ctype.h.blt26180 char uniname2ctype_pool_str346[sizeof("sinh")];
26822 "sinh",
/macosx-10.9.5/zsh-60/zsh/Src/Modules/
H A Dmathfunc.c173 NUMMATHFUNC("sinh", math_func, 1, 1, MF_SINH),
420 retd = sinh(argd);

Completed in 239 milliseconds

123