gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:log1p (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_acosh.c - 2.0KB - 71 lines
59:             t = x-one;
60:             return log1p(t+sqrt(2.0*t+t*t));
61:         }
bsd_source/lib/libc/src_bsd/math/e_atanh.c - 1.9KB - 71 lines
57:             t = x+x;
58:             t = 0.5*log1p(t+t*x/(one-x));
59:         } else 
More results from e_atanh.c
bsd_source/lib/libc/src_bsd/math/s_asinh.c - 1.9KB - 67 lines
54:             t = x*x;
55:             w =log1p(fabs(x)+t/(one+sqrt(one+t)));
56:         }