Searched refs:tanh (Results 1 - 25 of 79) sorted by relevance

1234

/external/eigen/doc/snippets/
H A DCwise_tanh.cpp2 cout << tanh(v) << endl;
/external/ltp/testcases/misc/math/float/
H A Dfloat_iperb.c33 {FUNC_NORMAL, 50, tanh, "tanh", "dtanh", "rtanh",
/external/ltp/testcases/misc/math/float/iperb/
H A DMakefile28 [rd]tanh *.ref*
H A Dgentanh.c52 tabR[i] = tanh(Inc * (i - nbVal / 2));
/external/ltp/testcases/misc/math/float/trigo/
H A DMakefile28 [rd]tanh
/external/eigen/unsupported/test/
H A Dautodiff_scalar.cpp43 using std::tanh;
50 AD res1 = tanh(val);
51 VERIFY_IS_APPROX(res1.value(), std::tanh(p.x()));
65 res1 = tanh(val);
H A Dcxx11_tensor_math.cpp22 Tensor<float, 1> vec2 = vec1.tanh();
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
H A Dtanh_valarray.pass.cpp16 // tanh(const valarray<T>& x);
47 std::valarray<T> v3 = tanh(v1);
/external/v8/src/base/
H A Dieee754.h76 V8_BASE_EXPORT double tanh(double x);
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
H A Dtan.pass.cpp43 std::complex<double> t2 = tanh(t1);
H A Dtanh.pass.cpp14 // tanh(const complex<T>& x);
25 assert(tanh(c) == x);
41 std::complex<double> r = tanh(testcases[i]);
/external/vulkan-validation-layers/libs/glm/detail/
H A Dfunc_trigonometric.hpp162 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/tanh.xml">GLSL tanh man page</a>
165 GLM_FUNC_DECL genType tanh(genType const & angle);
186 /// Arc hyperbolic tangent; returns the inverse of tanh.
/external/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h179 __DEVICE__ double tanh(double);
180 __DEVICE__ float tanh(float);
256 using ::tanh;
H A D__clang_cuda_cmath.h144 __DEVICE__ float tanh(float __x) { return ::tanhf(__x); } function
/external/eigen/test/
H A Darray.cpp236 VERIFY_IS_APPROX(m1.tanh(), tanh(m1));
271 VERIFY_IS_APPROX(tanh(m1), (0.5*(exp(m1)-exp(-m1)))/(0.5*(exp(m1)+exp(-m1))));
348 VERIFY_IS_APPROX(m1.tanh(), tanh(m1));
371 VERIFY_IS_APPROX(tanh(m1), (0.5*(exp(m1)-exp(-m1)))/(0.5*(exp(m1)+exp(-m1))));
/external/eigen/Eigen/src/Core/
H A DMathFunctions.h1238 T tanh(const T &x) { function in namespace:Eigen::numext
1239 EIGEN_USING_STD_MATH(tanh);
1240 return tanh(x);
1245 float tanh(float x) { return internal::generic_fast_tanh_float(x); } function in namespace:Eigen::numext
1250 float tanh(const float &x) { return ::tanhf(x); } function in namespace:Eigen::numext
1253 double tanh(const double &x) { return ::tanh(x); } function in namespace:Eigen::numext
H A DGlobalFunctions.h68 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(tanh,scalar_tanh_op,hyperbolic tangent,\sa ArrayBase::tanh)
H A DAssign_MKL.h127 EIGEN_MKL_VML_DECLARE_UNARY_CALLS(tanh, Tanh, LA)
/external/python/cpython2/Lib/test/
H A Dtest_math.py850 self.assertRaises(TypeError, math.tanh)
851 self.ftest('tanh(0)', math.tanh(0), 0)
852 self.ftest('tanh(1)+tanh(-1)', math.tanh(1)+math.tanh(-1), 0)
853 self.ftest('tanh(inf)', math.tanh(INF), 1)
854 self.ftest('tanh(
[all...]
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c172 double tanh(double);
296 F(tanf), F(tanl), F(tanh), F(tanhf), F(tanhl),
471 // CHECK-NOERRNO: declare double @tanh(double) [[NUW]]
/external/deqp/framework/delibs/debase/
H A DdeMath.h147 DE_INLINE float deFloatTanh (float a) { return (float)tanh(a); }
161 DE_INLINE double deTanh (double a) { return tanh(a); }
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
H A DComposableFunction.java158 /** The {@code FastMath.tanh} method wrapped as a {@link ComposableFunction}. */
163 return FastMath.tanh(d);
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h290 tanh() const function
300 * \sa <a href="group__CoeffwiseMathFunctions.html#cwisetable_sinh">Math functions</a>, sin(), tanh(), cosh()
/external/skia/third_party/lua/src/
H A Dlmathlib.c57 lua_pushnumber(L, l_mathop(tanh)(luaL_checknumber(L, 1)));
262 {"tanh", math_tanh},
/external/syslinux/com32/lua/src/
H A Dlmathlib.c57 lua_pushnumber(L, l_mathop(tanh)(luaL_checknumber(L, 1)));
262 {"tanh", math_tanh},

Completed in 603 milliseconds

1234