Mercurial > hg > octave-nkf
comparison src/mappers.cc @ 10711:fbd7843974fa
Periodic grammar check of documentation files to ensure common format.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Wed, 16 Jun 2010 20:36:55 -0700 |
parents | 4d1fc073fbb7 |
children | 89f4d7e294cc |
comparison
equal
deleted
inserted
replaced
10710:4669da47fe0d | 10711:fbd7843974fa |
---|---|
353 */ | 353 */ |
354 | 354 |
355 DEFUN (cbrt, args, , | 355 DEFUN (cbrt, args, , |
356 "-*- texinfo -*-\n\ | 356 "-*- texinfo -*-\n\ |
357 @deftypefn {Mapping Function} {} cbrt (@var{x})\n\ | 357 @deftypefn {Mapping Function} {} cbrt (@var{x})\n\ |
358 Return the real cube root of @var{x}. Unlike @code{@var{x}^(1/3)},\n\ | 358 Return the real cube root of @var{x}. Unlike @code{@var{x}^(1/3)},\n\ |
359 the result will be negative if @var{x} is negative.\n\ | 359 the result will be negative if @var{x} is negative.\n\ |
360 @end deftypefn") | 360 @end deftypefn") |
361 { | 361 { |
362 octave_value retval; | 362 octave_value retval; |
363 if (args.length () == 1) | 363 if (args.length () == 1) |
599 */ | 599 */ |
600 | 600 |
601 DEFUN (erfinv, args, , | 601 DEFUN (erfinv, args, , |
602 "-*- texinfo -*-\n\ | 602 "-*- texinfo -*-\n\ |
603 @deftypefn {Mapping Function} {} erfinv (@var{x})\n\ | 603 @deftypefn {Mapping Function} {} erfinv (@var{x})\n\ |
604 Computes the inverse error function, i.e. @var{y} such that\n\ | 604 Computes the inverse error function, i.e., @var{y} such that\n\ |
605 @example\n\ | 605 @example\n\ |
606 erf(@var{y}) == @var{x}\n\ | 606 erf(@var{y}) == @var{x}\n\ |
607 @end example\n\ | 607 @end example\n\ |
608 @seealso{erfc, erf}\n\ | 608 @seealso{erfc, erf}\n\ |
609 @end deftypefn") | 609 @end deftypefn") |