Rev 36537 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
If you have not yet made R, under Unix you must first configure R, andunder Windows you need to set up almost all the tools to make R andthen run(cd ../../include; make -f Makefile.win config.h Rconfig.h Rmath.h)Under Unix, making in this directory will make standalone librarieslibRmath.a and libRmath.so. `make static' and `make shared' makejust one of them.Under Windows, use make -f Makefile.win. This makes Rmath.dll withimport library libRmath.a, and static library Rmath.a.NB: certain compilers are unable to do compile-time IEEE-754arithmetic and so cannot compile mlutils.c. The known example isSun's cc. Use gcc for mlutils.c (or the whole library).To use the routines in your own C or C++ programs, include#define MATHLIB_STANDALONE#include <Rmath.h>and link against -lRmath (and -lm if needed on your OS). The examplefile test.c does nothing useful, but is provided to test the process.Note that you will probably not be able to run it unless you add thedirectory containing libRmath.so to the LD_LIBRARY_PATH.Under Windows you can also link statically against Rmath.a.Rmath.h contains R_VERSION_STRING, which is a character string containingthe current R version, for example "2.2.0".A little care is needed to use the random-number routines. You willneed to supply the uniform random number generatordouble unif_rand(void)or use the one supplied (and with a shared library or DLL you willhave to use the one supplied, which is the Marsaglia-multicarry withan entry pointset_seed(unsigned int, unsigned int)to set its seeds).The facilties to change the normal random number generator areavailable through the constant N01_kind. This takes valuesfrom the enumeration typetypedef enum {KINDERMAN_RAMAGE,AHRENS_DIETER,BOX_MULLER} N01type;(and USER_NORM is not available).There is full access to R's handling of NaNs, Inf and -Inf via specialversions of the macros and functionsISNAN, R_FINITE, R_log, R_pow and R_pow_diand (extern) constants R_PosInf, R_NegInf and NA_REAL.There is no support for R's notion of missing values, in particularnot for NA_INTEGER nor the distinction between NA and NaN for doubles.Installation (not Windows)==========================The targetsmake installmake uninstallwill (un)install the header Rmath.h and shared and static libraries(if built) under ${prefix} (default /usr/local). Add prefix=/path/to/hereto the command line to change the installation directory.More precise control on where things are installed is available atconfigure time: the location for the header files can be specified by--includedir= (or includedir= on the make command line) and that for thelibraries by --libdir= (or libdir= on the make command line).