gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:sqrt from t2ex/bsd_source/lib/libc/src_bsd/math/e_acosh.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_acosh.c - 2.0KB - 71 lines
56:             t=x*x;
57:             return log(2.0*x-one/(x+sqrt(t-one)));
58:         } else {                       /* 1<x<2 */
59:             t = x-one;
60:             return log1p(t+sqrt(2.0*t+t*t));
61:         }