search for: nrutil

Displaying 4 results from an estimated 4 matches for "nrutil".

Did you mean: niutil
2005 Jan 14
2
Porting from Linux to Windows
...t-pcr/pcr.dll": LoadLibrary failure: Invalid access to memory location. Besides modifying the makefile no changes have been made to the source code. This is the Makefile (the relevant target is winlib): --- RHOME="C:/Program Files/R/rw1090" SOURCE=lambert.c OBJ=lambert.o brent.o nrutil.o pcr.o #CFLAGS=-I/usr/lib/R/include -g -O2 CFLAGS+=-I${RHOME}/src/include -mno-cygwin CFLAGS+=-I/usr/lib/R/include -g -O2 OBJT=${OBJ} test.o OBJR=${OBJ} pcr-R.o ${OBJ} : ${SOURCE} # cc -I/usr/lib/R/include -o $@.o $@.c test : test.o ${OBJ} cc -g -o test ${OBJT} -lc -lm lib : ${OBJR} cc -o pcr...
2002 Jan 18
3
Shared libraries for use with R
...(now)) : unable to load shared library "/export/home/gpetris/tryit.so": ld.so.1: /export/home/share/R/R-1.4.0/lib/R/bin/R.bin: fatal: relocation error: file /export/home/gpetris/tryit.so: symbol dmatrix: referenced symbol not found The function dmatrix is contained in the object file nrutil.o in the library /export/home/gpetris/lib/SUN/32bit/libutil.a I was hoping that the flags given to R SHLIB could take care of that, but apparently I was wrong... What am I missing? Any help will be greatly appreciated. Thank you in advance, Giovanni -- _________________________________________...
2010 Nov 19
1
gomp library with Rtools212
...o binarizeReg.o binnode.o binnodeReg.o binpart.o bintree.o bintreeReg.o c45read.o calibrate.o constrct.o constrctReg.o cost.o dataStore.o error.o estCommon.o estOrdAttr.o estimator.o estimatorReg.o expr.o exprReg.o frontend.o ftree.o kdtree.o mathutil.o menu.o model.o modelReg.o mstring.o new_new.o nrutil.o options.o printUtil.o prune.o pruneReg.o random.o regtree.o relieff.o rfRegularize.o rfUtil.o rndforest.o rrelieff.o treenode.o treenodeReg.o trutil.o trutilReg.o utils.o -fopenmp -LC:/Util/R/R-2.12.0/bin/i386 -lR c:/util/rtools/mingw/bin/../lib/gcc/mingw32/4.5.0/libgomp.a(parallel.o):(.te xt+0x1...
2009 Jun 12
1
Can't get F77_CALL(dgemm) to work [SEC=UNCLASSIFIED]
Hi I am new to writing C code and am trying to write an R extension in C. I have hit a wall with F77_CALL(dgemm) in that it produces wrong results. The code below is a simplified example that multiplies the matrices Ab and Bm to give Cm. The results below show clearly that Cm is wrong. Am= 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Bm= 1 1 1 1 1