示例#1
0
        private static object Acosh(List <Expression> p)
        {
            double number = p[0];

            if (number < 1)
            {
                throw new NumberException();
            }

            return(XLMath.ACosh(p[0]));
        }
示例#2
0
 private static object Acosh(List <Expression> p)
 {
     return(XLMath.ACosh(p[0]));
 }