summaryrefslogtreecommitdiff
path: root/mpfr.texi
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-04-02 15:32:00 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-04-02 15:32:00 +0000
commitecf36b53bf67014953b0feeecaa338df17ee71a9 (patch)
tree652ff99b6f5f62892aca90194a64e7ef94755d37 /mpfr.texi
parent4662a8f3a8a82b694d45c2ce41aca61927e3be92 (diff)
downloadmpfr-ecf36b53bf67014953b0feeecaa338df17ee71a9.tar.gz
Changed mpfr_{jn,yn}_si (mpfr_t res, mpfr_t x, long n, ...) into
mpfr_{jn,yn} (mpfr_t res, long n, mpfr_t x, ...), as discussed by mail; fixed a typo in mpfr.texi in mpfr_{y0,y1,yn} description. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4405 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr.texi')
-rw-r--r--mpfr.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/mpfr.texi b/mpfr.texi
index 31c0010fc..bf8e40294 100644
--- a/mpfr.texi
+++ b/mpfr.texi
@@ -1486,7 +1486,7 @@ rounded in the direction @var{rnd}.
@deftypefun int mpfr_j0 (mpfr_t @var{rop}, mpfr_t @var{op}, mp_rnd_t @var{rnd})
@deftypefunx int mpfr_j1 (mpfr_t @var{rop}, mpfr_t @var{op}, mp_rnd_t @var{rnd})
-@deftypefunx int mpfr_jn_si (mpfr_t @var{rop}, mpfr_t @var{op}, long @var{n}, mp_rnd_t @var{rnd})
+@deftypefunx int mpfr_jn (mpfr_t @var{rop}, long @var{n}, mpfr_t @var{op}, mp_rnd_t @var{rnd})
Set @var{rop} to the value of the first order Bessel function of order 0, 1
and @var{n} on @var{op}, rounded in the direction @var{rnd}. When @var{op} is
NaN, @var{rop} is always set to NaN. When @var{op} is plus or minus Infinity,
@@ -1497,12 +1497,12 @@ and the sign of @var{op}.
@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})
+@deftypefunx int mpfr_yn (mpfr_t @var{rop}, long @var{n}, mpfr_t @var{op}, 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,
+NaN or negative,
@var{rop} is always set to NaN. When @var{op} is +Inf,
-@var{rop} is +0. When @var{op} is zero,
+@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