diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2007-03-31 14:01:00 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2007-03-31 14:01:00 +0000 |
commit | 1af82f2cbe090dfec327a529437ab7ff94e6319d (patch) | |
tree | 0bb0f69dad0f81f5255135d272be590d7863450c /mpfr.texi | |
parent | d8d309ad9efae458fe0ec70713e682c54ab623b7 (diff) | |
download | mpfr-1af82f2cbe090dfec327a529437ab7ff94e6319d.tar.gz |
added Bessel functions of second kind (y0, y1, yn_si)
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4401 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr.texi')
-rw-r--r-- | mpfr.texi | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1495,6 +1495,17 @@ NaN, @var{rop} is always set to NaN. When @var{op} is plus or minus Infinity, and the sign of @var{op}. @end deftypefun +@deftypefun int mpfr_y0 (mpfr_t @var{rop}, mpfr_t @var{op}, mp_rnd_t @var{rnd}) +@deftypefunx int mpfr_y1 (mpfr_t @var{rop}, mpfr_t @var{op}, mp_rnd_t @var{rnd}) +@deftypefunx int mpfr_yn_si (mpfr_t @var{rop}, mpfr_t @var{op}, long @var{n}, mp_rnd_t @var{rnd}) +Set @var{rop} to the value of the second order Bessel function of order 0, 1 +and @var{n} on @var{op}, rounded in the direction @var{rnd}. When @var{op} is +NaN or nebative, +@var{rop} is always set to NaN. When @var{op} is +Inf, +@var{rop} is +0. When @var{op} is zero, +@var{rop} is +Inf or @minus{}Inf depending on the parity and sign of @var{n}. +@end deftypefun + @deftypefun int mpfr_fma (mpfr_t @var{rop}, mpfr_t @var{op1}, mpfr_t @var{op2}, mpfr_t @var{op3}, mp_rnd_t @var{rnd}) Set @var{rop} to @math{@var{op1} @GMPtimes{} @var{op2} + @var{op3}}, rounded in the direction @var{rnd}. |