Warning, file /include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef EIGEN_CXX11_TENSOR_TENSOR_GLOBAL_FUNCTIONS_H
0011 #define EIGEN_CXX11_TENSOR_TENSOR_GLOBAL_FUNCTIONS_H
0012
0013 namespace Eigen {
0014
0015
0016
0017
0018
0019
0020 template <typename ADerived, typename BDerived, typename XDerived>
0021 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const
0022 TensorCwiseTernaryOp<internal::scalar_betainc_op<typename XDerived::Scalar>,
0023 const ADerived, const BDerived, const XDerived>
0024 betainc(const ADerived& a, const BDerived& b, const XDerived& x) {
0025 return TensorCwiseTernaryOp<
0026 internal::scalar_betainc_op<typename XDerived::Scalar>, const ADerived,
0027 const BDerived, const XDerived>(
0028 a, b, x, internal::scalar_betainc_op<typename XDerived::Scalar>());
0029 }
0030
0031 }
0032
0033 #endif