Examples of fun_ATANH()


Examples of org.formulacompiler.compiler.internal.templates.ExpressionTemplatesForDoubles.fun_ATANH()

          return t.fun_ATAN( to_double( _args[ 0 ] ) );
        }
         break;
      case ATANH:
        if (1 == c ) {
          return t.fun_ATANH( to_double( _args[ 0 ] ) );
        }
         break;
      case ATAN2:
        if (2 == c ) {
          return t.fun_ATAN2( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
View Full Code Here

Examples of org.formulacompiler.compiler.internal.templates.ExpressionTemplatesForPrecisionBigDecimals.fun_ATANH()

          return adjustReturnedValue( t.fun_ATAN( to_BigDecimal( _args[ 0 ] ) ) );
        }
         break;
      case ATANH:
        if (1 == c ) {
          return adjustReturnedValue( t.fun_ATANH( to_BigDecimal( _args[ 0 ] ) ) );
        }
         break;
      case ATAN2:
        if (2 == c ) {
          return adjustReturnedValue( t.fun_ATAN2( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
View Full Code Here

Examples of org.formulacompiler.compiler.internal.templates.ExpressionTemplatesForScaledBigDecimals.fun_ATANH()

          return adjustReturnedValue( t.fun_ATAN( to_BigDecimal( _args[ 0 ] ) ) );
        }
         break;
      case ATANH:
        if (1 == c ) {
          return adjustReturnedValue( t.fun_ATANH( to_BigDecimal( _args[ 0 ] ) ) );
        }
         break;
      case ATAN2:
        if (2 == c ) {
          return adjustReturnedValue( t.fun_ATAN2( to_BigDecimal( _args[ 0 ] ), to_BigDecimal( _args[ 1 ] ) ) );
View Full Code Here

Examples of org.formulacompiler.compiler.internal.templates.ExpressionTemplatesForScaledLongs.fun_ATANH()

          return t.fun_ATAN( to_long( _args[ 0 ] ) );
        }
         break;
      case ATANH:
        if (1 == c ) {
          return t.fun_ATANH( to_long( _args[ 0 ] ) );
        }
         break;
      case ATAN2:
        if (2 == c ) {
          return t.fun_ATAN2( to_long( _args[ 0 ] ), to_long( _args[ 1 ] ) );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.