Displaying 20 results from an estimated 100 matches similar to: "floating point control on windows"
2010 Apr 02
1
What should I do regarding "DLL attempted to change..." warning ?
Hi all,
The call to:
library(rJava)
Results in the following warning massage:
Warning message:
In inDL(x, as.logical(local), as.logical(now), ...) :
DLL attempted to change FPU control word from 8001f to 9001f
After some searching I found the following explanation:
> R expects all calls to DLLs (including the initializing call) to leave the
> FPU control word unchanged. Many run-time
2005 Aug 16
2
quirky behavior from rbinom (PR#8071)
Full_Name: Chris Paulse
Version: 2.1.1
OS: WinXP
Submission from: (NULL) (129.98.60.134)
This seems strange. I have a small block of code that repeatedly calls rbinom.
I put a break in there in case it returns NaN, as I've been having problems with
this. Here is a transcript from the debug session:
Browse[1]> theP
[1] 1
Browse[1]> yleft[dataIndex]
[1] 3
Browse[1]> rbinom(1,3,1)
2005 Aug 29
1
interactive time series plot
Hi,
I've written the following function to display small windows of a time
series (and a processed version of it) with mouse clicks used to move the
window forward.
ViewRawAndProcessed <- function(raw, processed, width=1000)
{
len <- length(raw)
n <- round(len/width)
for (i in 1:n)
{
plot(raw[((i-1)*width):(i*width)], type="s")
2005 Apr 14
5
cross compiling R for Windows under Linux
Hi
I tried to cross compile R under Linux but get an
error.
i586-mingw32-gcc -isystem
/home/schouwl/unpack/mingw/include -O2 -Wall -pedantic
-I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD -c
dynload.c -o dynload.o
dynload.c: In function `R_loadLibrary':
dynload.c:94: warning: implicit declaration of
function `_controlfp'
dynload.c:94: error: `_MCW_IC' undeclared (first use
in this
2003 Feb 06
5
options(chmhelp = TRUE)
Hi all,
Here's a curosity I ran into since upgrading to 1.6.2 (precompiled
for Windows). When using the chm help I get the following warning. I saw
a recent post regarding this as a new warning (``dyn.load warning
message in R1.6.2 on Windows XP'' dated 1/28/03), but not in the context
of the help system. The warning only appears once and does not prevent
the chm file from
2010 May 14
3
What does this warning mean: "DLL attempted to change FPU control word from 8001f to 9001f"
I started a brand new session in R 2.10.1 (on Windows).
If it matters, I am running the community edition of MySQL 5.0.67, and it is
all running fine.
I am just beginning to examine the process of getting timer series data from
one table in MySQL, computing moving averages and computing a selection of
estimates based on relations among moving averages of different variates,
and storing all the
2004 Nov 26
1
Cross-compiling R for Windows on linux
I tried to cross-compile the newest release 2.0.1 on a linux machine, but i
always got an error at the following stage
DHAVE_CONFIG_H -DR_DLL_BUILD -c dynload.c -o dynload.o
dynload.c: In function `R_loadLibrary':
dynload.c:94: warning: implicit declaration of function `_controlfp'
dynload.c:94: error: `_MCW_IC' undeclared (first use in this function)
dynload.c:94: error: (Each
2006 Aug 13
2
Puzzling warning using 2.3.1...
Greetings folks:
Stepped away from a win/lin dual boot system and spent the better part of the
past week resetting a windows only arrangement.
Before the switch I was running 2.3.1 without any strange behaviours. When I
reached the point of putting it back on the machine I would get this puzzling
warning the first time I would try to select a cran mirror:
> chooseCRANmirror()
Warning
2003 May 14
2
abrupt end to R
Dear All,
I haven't seen any further comments about the problem that John Marsland
first noted and that I also have:
> library(DBI)
> library(RMySQL)
Warning message:
DLL attempted to change FPU control word from 8001f to 9001f
> mgr <- dbDriver("MySQL")
> con <- dbConnect(mgr, host="localhost", dbname="marketing")
upon which R dies...
2003 Feb 16
3
RMySQL installation and loading errors
Hi R users,
I have been trying to install and use RMySQL on Windows98 for
MySQL3.23.55-max using the pulldown menu. I am getting the following errors.
I read the doc and some archived mails about a similar problem on unix like
systems. Still can't get it to work. Some info below that may indicated where
the problem is:
* The directory RMySQL\libs is empty---I was not expecting this.
*
2004 Oct 05
2
Installation Package "gregmisc" nicht möglich?!?
Hallo zusammen.
Da ich R zur Erstellung meiner wissenschaftlichen Arbeit brauche versuchte ich dies heute zu installieren. Zunächst in der Vrsion 1.9.1 (rw1091.exe). Ich benötige das Package "gregmisc" und installierte dies von CRAN. Bei der Installation tritt folgende Meldung auf:
trying URL `http://cran.r-project.org/bin/windows/contrib/2.0/gregmisc_2.0.0.zip'
Content type
2005 Aug 01
2
Rgdal windows binary warning message
Hi all,
I just downloaded windows binaries of RGDAL (from
http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/2.1/) and installed.
I ran the example R_HOME\library\rgdal\R-ex\getPixmapGDAL.R and everything
seemed to work as expected. However I got the following warning message:
DLL attempted to change FPU control word from 8001f to 9001f
The R-help (?dyn.load) describes the problem as:
2003 Mar 10
1
DLL error after update.packages
When updataing packages from CRAN, I got the following error message:
updating HTML package descriptions
Warning message:
DLL attempted to change FPU control word from 8001f to 9001f
Everything seems fine, the packages updated, just wondering what this was. R 1.6.2 on Windows 98. Details on the packages dowloaded are below.
________________________________________________
update.packages()
2007 May 30
4
Connecting to PostgreSQL/PostGIS from R (rgdal?)
Hello,
I've been trying every now and then to find a cross operating system
solution that would let me access PostgreSQL (and PostGIS) from R, or to
access R from PostgreSQL. I know of pl/r, which accomplishes the
latter, but has yet to be successfully ported to Windows. Similarly,
I've tried to use Rdbi and DBI, but I haven't had luck with those on
Windows either for connecting to
2005 Sep 20
2
indicating progress in RGui from a c function
Hi,
I'm sure this issue has come up before, but searching the archives didn't
lead me to a solution or resolution of the issue.
I'd like to indicate progress of a calculation from within a C shared
library to the R GUI. The apparent function call is flush.console() after
RPrintf, but it isn't clear to me what the easiest way to do this is. Would
it be possible to add a flag
2003 Jan 29
1
dyn.load warning message in R1.6.2 on Windows XP
Hi folks:
I used to load a DLL fine up until R 1.5.1. The same DLL dyn.loaded under R
1.6.2 prints the following warning message:
> dyn.load("C:/Rajiv/Bin/rpdate.dll")
Warning message:
DLL attempted to change FPU control word from 8001f to 9001f
>
Any indication as to what the warning means, and whether I should be
concerned about it? The DLL is made from a pure C code,
2004 Nov 18
1
ROracle connection problem
Hi,
I found the same question in the mailing list already a few months ago -
but there was no answer to it - so I'll try it again
Could somebody help me to solve this following problem? I just begin to
learn how to connect my Oracle database with R.
> library(DBI)
> library(ROracle)
Warning message:
DLL attempted to change FPU control word from 8001f to 9001f
>
2003 Apr 10
2
New problem
Hi all, and thx a lot for your answers,
in fact i know that R deals with logical numbers 0 and 1 the same way like TRUE and FALSE but my problem is in fact with C language.
I have done an interface with C and my first problem was with float variables, but this warning doesn't appear everytime and really i don't know the problem with R:
"Warning message:
DLL attempted to change
2003 Jan 15
2
Warning appears after update.packages() (PR#2459)
Full_Name: Joaquin Diaz-Saiz
Version: 1.6.2
OS: Windows 98
Submission from: (NULL) (129.7.121.92)
> update.packages()
trying URL `http://cran.r-project.org/bin/windows/contrib/PACKAGES'
Content type `text/plain; charset=iso-8859-1' length 8721 bytes
opened URL
downloaded 8721 bytes
Warning message:
DLL attempted to change FPU control word from 8001f to 9001f
NOTE: IS THIS OF ANY
2006 Nov 21
1
dyn.load
Hi everyone,
Now I know there is information on this in the help files - which I have
read. I am very close to implementing this but can't quite get how to
remove this final hurdle.
I have a DLL called "X.DLL" which I have no original code for, just the
DLL.
I have created a wrapper C file for the calls in X.DLL, and have
successfully (I think) created a wrapper DLL for X