Displaying 3 results from an estimated 3 matches for "prograaming".
Did you mean:
programing
2009 May 16
1
Fwd: Cannot allocate a new database connection error
---------- Forwarded message ----------
From: Moumita Das <das.moumita.online@gmail.com>
Date: Sat, May 16, 2009 at 2:26 PM
Subject: Cannot allocate a new database connection error
To: r-help-request@r-project.org
Hi friends,
why do i keep getting this error?The program runs, twice and every third
time i get this error.I have to quit.Again get teh R-prompt and then run the
script.
*Error
2000 May 22
0
integer functions {was Inconsistencies (PR#550)}
...) --- when all args are integers
o "+" and "-" if the args are integers
-- however that might change: Currently, there's no overflow detection!
BDR> (Since I know you have a copy, this is exactly the
BDR> problem of the wam example on page 203 of `S Prograaming'.)
BDR> For example, if printit.c is
<... instructive example...>
Martin Maechler <maechler@stat.math.ethz.ch> http://stat.ethz.ch/~maechler/
Seminar fuer Statistik, ETH-Zentrum LEO D10 Leonhardstr. 27
ETH (Federal Inst. Technology) 8092 Zurich SWITZERLAND
phone:...
2000 May 22
1
Inconsistencies (PR#550)
Dear all,
I was playing around with some C-code that I dynamically linked to R
and noticed the following inconsistency:
> dat <- matrix(1,3,3)
> is.double(dat)
[1] TRUE
> is.integer(dat)
[1] FALSE
> dat <- matrix(1:9,3,3)
> is.double(dat)
[1] FALSE
> is.integer(dat)
[1] TRUE
How did I find out? I passed `dat' to a double * in the C-code and
printed out the matrix