예제 #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());
 }