Displaying 3 results from an estimated 3 matches for "newredef".
Did you mean:
newred
1998 Jun 08
1
R-beta: nnet port
Where can I get the following headers:
S.h
newredef.h
--
Douglas Steele
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r...
1999 Jul 27
1
ESRI Shape reader
Well Dr. Ripley helped me solve the first problem, next question
I need to do some debugging now that the function loads properly
into R. I checked the S documentation and to use the C I/O functions
you need to include newredef.h, this file doesn't exist in /src/include.
How does this work in R? under S3.4 on a dec station i could use
fprintf(stdout,..);
fflush(stdout);
thanks,
Nicholas
PS If I should be sending these questions to r-help instead let me know.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
1999 Oct 27
1
Rdefines.h
...hich this strategy might fail?
Cheers,
Berwin
==================== test.c =========================
=== compiled via: R SHLIB test.c ===================
#define S_Plus
#if defined(S_Plus)
#include <S.h>
#if defined(SPLUS_VERSION) && SPLUS_VERSION >= 4000
# include <newredef.h>
#endif
#endif
static longint *p=NULL;
void BT_demo(longint n){
#if defined(S_Plus)
if( p != NULL ){
PROBLEM "Possible memory corruption or memory leak.\n We"
"advise to restart your S+ session" WARNING(NULL_ENTRY);
Free(p);
}
#endif
p = Calloc(n,...