示例#1
0
文件: Cosh.hpp 项目: amart/ATL
    inline const atl::Cosh<REAL_T, EXPR> cosh(const atl::ExpressionBase<REAL_T, EXPR>& expr) {

        return atl::Cosh<REAL_T, EXPR > (expr.Cast());
    }
示例#2
0
    inline const atl::Log<REAL_T, EXPR> log(const atl::ExpressionBase<REAL_T, EXPR>& expr) {

        return atl::Log<REAL_T, EXPR > (expr.Cast());
    }
示例#3
0
文件: ASin.hpp 项目: amart/ATL
 inline const atl::ASin<REAL_T, EXPR> asin(const atl::ExpressionBase<REAL_T, EXPR>& expr) {
     return atl::ASin<REAL_T, EXPR > (expr.Cast());
 }