Displaying 2 results from an estimated 2 matches for "deftypefun".
Did you mean:
deftypefn
2024 Oct 08
1
WRE about R_strtod
...ng for the "NA" string, *end == str)?
Index: doc/manual/R-exts.texi
===================================================================
--- doc/manual/R-exts.texi (revision 87211)
+++ doc/manual/R-exts.texi (working copy)
@@ -16482,12 +16482,12 @@
@apifun R_atof
@apifun R_strtod
- at deftypefun void R_atof (const char* @var{str})
- at deftypefunx void R_strtod (const char* @var{str}, char ** @var{end})
+ at deftypefun double R_atof (const char* @var{str})
+ at deftypefunx double R_strtod (const char* @var{str}, char ** @var{end})
Implementations of the C99/POSIX functions @code{atof} and...
2012 Sep 15
0
[Repost 3/3] Minor glitch in 'Writing R Extensions'
...exi 2012-09-03 10:56:42.359529056 -0500
@@ -10659,14 +10659,14 @@
Returns the value of @var{x} rounded to @var{digits} decimal digits
(after the decimal point).
-This is the function used by @R{}'s @code{round()}.
+This is the function used by @R{}'s @code{signif()}.
@end deftypefun
@deftypefun double fround (double @var{x}, double @var{digits})
Returns the value of @var{x} rounded to @var{digits} @emph{significant}
decimal digits.
-This is the function used by @R{}'s @code{signif()}.
+This is the function used by @R{}'s @code{round()}.
@end def...