/external/eigen/unsupported/doc/examples/ |
MatrixSinh.cpp | 11 MatrixXf sinhA = A.sinh(); 12 std::cout << "sinh(A) = \n" << sinhA << "\n\n"; 17 // The matrix functions satisfy cosh^2(A) - sinh^2(A) = I, 19 std::cout << "cosh^2(A) - sinh^2(A) = \n" << coshA*coshA - sinhA*sinhA << "\n\n";
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
TestSinh.rs | 24 return sinh(inV); 28 return sinh(inV); 32 return sinh(inV); 36 return sinh(inV); 40 return sinh(inV); 44 return sinh(inV); 48 return sinh(inV); 52 return sinh(inV);
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_csinh.c | 30 * sinh(z) = sinh(x+iy) 31 * = sinh(x) cos(y) + i cosh(x) sin(y). 36 * must satisfy both sinh(conj(z)) == conj(sinh(z)) and sinh(-z) == -sinh(z). 67 return (CMPLX(sinh(x), y)); 69 return (CMPLX(sinh(x) * cos(y), cosh(x) * sin(y))); 88 * sinh(+-0 +- I Inf) = +-0 + I dNaN [all...] |
e_sinh.c | 19 * mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2 20 * 1. Replace x by |x| (sinh(-x) = -sinh(x)). 23 * 0 <= x <= 22 : sinh(x) := --------------, E=expm1(x) 26 * 22 <= x <= lnovft : sinh(x) := exp(x)/2 27 * lnovft <= x <= ln2ovft: sinh(x) := exp(x/2)/2 * exp(x/2) 28 * ln2ovft < x : sinh(x) := x*shuge (overflow) 31 * sinh(x) is |x| if x is +INF, -INF, or NaN. 32 * only sinh(0)=0 is exact for finite x. 60 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact * [all...] |
s_ctanh.c | 40 * s = sinh(x) 45 * tanh(z) = sinh(z) / cosh(z) 47 * sinh(x) cos(y) + I cosh(x) sin(y) 49 * cosh(x) cos(y) + I sinh(x) sin(y) 51 * cosh(x) sinh(x) / cos^2(y) + I tan(y) 53 * 1 + sinh^2(x) / cos^2(y) 120 * approximation sinh^2(huge) ~= exp(2*huge) / 4. 132 s = sinh(x);
|
/external/v8/test/mjsunit/es6/ |
math-hyperbolic.js | 31 [Math.sinh, Math.cosh, Math.tanh, Math.asinh, Math.acosh, Math.atanh]. 50 test_id(Math.sinh, Math.asinh, x); 51 test_id(Math.sinh, Math.asinh, -x); 58 [Math.sinh, Math.asinh, Math.tanh, Math.atanh].forEach(function(fun) { 64 [Math.sinh, Math.asinh].forEach(function(fun) { 88 assertEquals(0, Math.sinh(0)); 89 assertEquals(-Infinity, 1/Math.sinh(-0)); 105 assertEqualsDelta(74.20321057778875, Math.sinh(5), 1E-12); 106 assertEqualsDelta(-74.20321057778875, Math.sinh(-5), 1E-12); 142 // Implementation-specific tests for sinh [all...] |
/prebuilts/go/darwin-x86/src/math/ |
sinh.go | 19 // Sinh returns the hyperbolic sine of x. 22 // Sinh(±0) = ±0 23 // Sinh(±Inf) = ±Inf 24 // Sinh(NaN) = NaN 25 func Sinh(x float64) float64 {
|
/prebuilts/go/linux-x86/src/math/ |
sinh.go | 19 // Sinh returns the hyperbolic sine of x. 22 // Sinh(±0) = ±0 23 // Sinh(±Inf) = ±Inf 24 // Sinh(NaN) = NaN 25 func Sinh(x float64) float64 {
|
/prebuilts/go/darwin-x86/src/math/cmplx/ |
sin.go | 40 // w = sin x cosh y + i cos x sinh y. 64 // = sinh x * cos y + i cosh x * sin y . 72 // Sinh returns the hyperbolic sine of x. 73 func Sinh(x complex128) complex128 { 88 // w = cos x cosh y - i sin x sinh y. 108 // ccosh(z) = cosh x cos y + i sinh x sin y . 123 // calculate sinh and cosh 126 return math.Sinh(x), math.Cosh(x)
|
tan.go | 40 // sin 2x + i sinh 2y 67 return complex(math.Sin(2*real(x))/d, math.Sinh(2*imag(x))/d) 74 // tanh z = (sinh 2x + i sin 2y) / (cosh 2x + cos 2y) . 88 return complex(math.Sinh(2*real(x))/d, math.Sin(2*imag(x))/d) 158 // sin 2x - i sinh 2y 183 return complex(math.Sin(2*real(x))/d, -math.Sinh(2*imag(x))/d)
|
/prebuilts/go/linux-x86/src/math/cmplx/ |
sin.go | 40 // w = sin x cosh y + i cos x sinh y. 64 // = sinh x * cos y + i cosh x * sin y . 72 // Sinh returns the hyperbolic sine of x. 73 func Sinh(x complex128) complex128 { 88 // w = cos x cosh y - i sin x sinh y. 108 // ccosh(z) = cosh x cos y + i sinh x sin y . 123 // calculate sinh and cosh 126 return math.Sinh(x), math.Cosh(x)
|
tan.go | 40 // sin 2x + i sinh 2y 67 return complex(math.Sin(2*real(x))/d, math.Sinh(2*imag(x))/d) 74 // tanh z = (sinh 2x + i sin 2y) / (cosh 2x + cos 2y) . 88 return complex(math.Sinh(2*real(x))/d, math.Sin(2*imag(x))/d) 158 // sin 2x - i sinh 2y 183 return complex(math.Sin(2*real(x))/d, -math.Sinh(2*imag(x))/d)
|
/external/fdlibm/ |
w_sinh.c | 21 double ieee_sinh(double x) /* wrapper sinh */ 23 double ieee_sinh(x) /* wrapper sinh */ 34 return __kernel_standard(x,x,25); /* sinh overflow */
|
/art/test/123-inline-execute2/ |
expected.txt | 2 Math.sinh(0.0) = 0.000000000000 12 Math.sinh(0.7853981633974483) = 0.868670961486 22 Math.sinh(1.5707963267948966) = 2.301298902307 31 Math.sinh(2.356194490192345) = 5.227971924678 41 Math.sinh(3.141592653589793) = 11.548739357258 51 Math.sinh(3.9269908169872414) = 25.367158319374 61 Math.sinh(4.71238898038469) = 55.654397599418 70 Math.sinh(5.497787143782138) = 122.073483514693 80 Math.sinh(6.283185307179586) = 267.744894041016 151 StrictMath.sinh(0.0) = 0. [all...] |
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
StemFunction.h | 80 res = std::sinh(x); 87 static Scalar sinh(Scalar x, int n) function in class:Eigen::StdStemFunctions 92 res = std::sinh(x);
|
/ndk/tests/device/test-gnustl-full/unit/ |
valarray_test.cpp | 48 tmp = sinh(darray); 74 tmp = sinh(farray); 101 tmp = sinh(ldarray);
|
/ndk/tests/device/test-stlport/unit/ |
valarray_test.cpp | 48 tmp = sinh(darray); 74 tmp = sinh(farray); 101 tmp = sinh(ldarray);
|
/development/ndk/platforms/android-13/arch-arm/symbols/ |
libm.so.functions.txt | 140 sinh
|
/development/ndk/platforms/android-13/arch-mips/symbols/ |
libm.so.functions.txt | 140 sinh
|
/development/ndk/platforms/android-3/arch-arm/symbols/ |
libm.so.functions.txt | 134 sinh
|
/development/ndk/platforms/android-9/arch-arm/symbols/ |
libm.so.functions.txt | 137 sinh
|
/development/ndk/platforms/android-9/arch-mips/symbols/ |
libm.so.functions.txt | 137 sinh
|
/external/mesa3d/src/glsl/builtins/ir/ |
sinh.ir | 1 ((function sinh
|
/ndk/sources/cxx-stl/stlport/src/ |
complex_trig.cpp | 70 ::cos(z._M_re) * ::sinh(z._M_im)); 89 -::sin(z._M_re) * ::sinh(z._M_im)); 114 return complex<_Tp>(::sin(re2) / den, ::sinh(im2) / den); 130 // sinh 133 return complex<_Tp>(::sinh(z._M_re) * ::cos(z._M_im), 137 _STLP_DECLSPEC complex<float> _STLP_CALL sinh(const complex<float>& z) function 140 _STLP_DECLSPEC complex<double> _STLP_CALL sinh(const complex<double>& z) function 144 _STLP_DECLSPEC complex<long double> _STLP_CALL sinh(const complex<long double>& z) function 153 ::sinh(z._M_re) * ::sin(z._M_im)); 177 return complex<_Tp>(::sinh(re2) / den, ::sin(im2) / den) [all...] |
/external/vulkan-validation-layers/libs/glm/detail/ |
func_trigonometric.inl | 158 // sinh 160 GLM_FUNC_QUALIFIER genType sinh 165 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'sinh' only accept floating-point input"); 167 return genType(std::sinh(angle)); 170 VECTORIZE_VEC(sinh)
|