Displaying 20 results from an estimated 200 matches similar to: "R 2.1.0 (beta) on IRIX"
2000 Jun 16
2
R and OpenBSD
Howdy!
Has anybody successfully installed R under OpenBSD? I just tried to
install the latest R-release under OpenBSD 2.7 and got the following
errors in the make step:
pnorm.c:62 'ML_ERR_return_NAN' undeclared
pnorm.c:62 'ML_NAN' undeclared
pnorm.c:62 'ML_NEGINF' undeclared
--Ragnar
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help
2000 Jun 16
2
R and OpenBSD
Howdy!
Has anybody successfully installed R under OpenBSD? I just tried to
install the latest R-release under OpenBSD 2.7 and got the following
errors in the make step:
pnorm.c:62 'ML_ERR_return_NAN' undeclared
pnorm.c:62 'ML_NAN' undeclared
pnorm.c:62 'ML_NEGINF' undeclared
--Ragnar
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help
2001 Dec 08
2
Building under IRIX 6.5 (report)
On my IRIX system (SGI compilers, gcc not installed) ./configure runs fine,
but there is a problem with make (output below) that can be solved by
changing one line in src/modules/lapack/Makefile. If this line is changed,
make runs without problems. 'make check' still has a problem
(sh[14]: /usr/sbin/perl: arg list too long), but I assume this is
"cosmetic".
Manfred
-----------
2019 Dec 09
0
What should dnorm(0, 0, -Inf) return?
>>>>> peter dalgaard
>>>>> on Sun, 8 Dec 2019 12:11:50 +0100 writes:
> Yes, that looks like a bug and an easily fixable one too.
agreed.
> However, I spy another issue: Why do we check the
> !R_FINITE(x) && mu == x before checking for sd < 0 ? The
> difference is whether we
> return ML_NAN; or ML_ERR_return_NAN;
2019 Dec 08
2
What should dnorm(0, 0, -Inf) return?
Yes, that looks like a bug and an easily fixable one too.
However, I spy another issue: Why do we check the !R_FINITE(x) && mu == x before checking for sd < 0 ? The difference is whether we
return ML_NAN;
or
ML_ERR_return_NAN;
but surely negative sd should always be an error?
I'd be inclined to do
if (sigma < 0) ML_ERR_return_NAN;
if(!R_FINITE(sigma)) return R_D__0;
2002 Feb 20
1
Pivoting in chol
Hi Everyone,
I have modified my version of R-1.4.1 to include choleski with pivoting
(like in Splus). I thought R-core might consider including this in the
next version of R, so I give below the steps required to facilitate
this.
1. Copied Linpack routine "dchdc.f" into src/appl
2. Inserted line F77_SUBROUTINE(dchdc) in src/appl/ROUTINES
3. Inserted "dchdc.f" into
2005 Dec 14
1
R-beta on AIX5.2
I build R-beta on AIX5.2 is failed.
make[3]: Entering directory
`/home/nakama/Rbeta/R-beta/src/nmath'
xlc_r -I. -I../../src/include -I../../src/include -I/usr/local/include
-I/opt/freeware/include -DHAVE_CONFIG_H -q64 -I/usr/local/include
-I/opt/freeware/include -O2 -D_ALL_SOURCE -D_LINUX_SOURCE_COMPAT -c
mlutils.c -o mlutils.o
"nmath.h", line 50.9: 1506-213 (S) Macro name calloc
2010 Jan 18
1
A question about build R-2.10.0 on HP-UX ia64 server.
Hi R usrs,
I want to build R-2.10.0 on HP-UX, but I got following error message:
ld: Unsatisfied symbol "zgemm" in file CHOLMOD.a[cholmod_l_super_numeric.o]
ld: Unsatisfied symbol "zgemv" in file CHOLMOD.a[cholmod_l_super_solve.o]
ld: Unsatisfied symbol "zherk" in file CHOLMOD.a[cholmod_l_super_numeric.o]
ld: Unsatisfied symbol "ztrsm" in file
2010 Jan 18
0
Build R-2.10.0 on HP-UX ia64 server
Hi All,
I want to build R-2.10.0 on HP-UX, but I got following error message:
ld: Unsatisfied symbol "zgemm" in file CHOLMOD.a[cholmod_l_super_numeric.o]
ld: Unsatisfied symbol "zgemv" in file CHOLMOD.a[cholmod_l_super_solve.o]
ld: Unsatisfied symbol "zherk" in file CHOLMOD.a[cholmod_l_super_numeric.o]
ld: Unsatisfied symbol "ztrsm" in file
2019 Dec 07
0
What should dnorm(0, 0, -Inf) return?
Good question, I cannot speak for R's developers but I would like to
provide some information on the problem. Here are the first few lines of
the dnorm function located at src\nmath\dnorm.c:
```
double dnorm4(double x, double mu, double sigma, int give_log)
{
#ifdef IEEE_754
if (ISNAN(x) || ISNAN(mu) || ISNAN(sigma))
return x + mu + sigma;
#endif
if(!R_FINITE(sigma)) return R_D__0;
2005 Mar 29
1
final stages of installing R - please help?
Hello,
This morning I downloaded, unzipped, and compiled the latest version of
R for unix, in my HOME/APPLICATIONS directory.
My current unix machine is a sparc-sun-solaris2.9, running SunOS 5.9.
Here are the last few lines of the output following ./configure:
R is now configured for sparc-sun-solaris2.9
Source directory: .
Installation directory: /usr/local
C compiler:
2019 Dec 07
2
What should dnorm(0, 0, -Inf) return?
Hi,
Apropos of a recent Inf question, I've previously wondered if dnorm "does the right thing" with
dnorm(0, 0, -Inf)
which gives zero. Should that be zero or NaN (or NA)?
The help says "'sd < 0' is an error and returns 'NaN'" and since -Inf < 0 is TRUE, then... is this a bug?
Thank you,
Stephen
Rochester, MN USA
2006 Feb 07
0
[R] R compile on AIX 5.2
Professor Ripley,
Following your advice, I am now using an updated version of gcc
(4.0.2 to be exact) as well as a true fortran compiler (XL Fortran
Compiler v10.1.0.0 from IBM). I am still experiencing difficulty in
running "make" after a successful "configure". Any additional insight
you could provide would be greatly appreciated. Output of make is as
follows:
Running
2005 Jun 30
1
Samba 3.0.14a problem: not able to see all files in a directory
Regards,
Samba 3.0.14a, running on Solaris 8 or Sgi IRIX 6.5.27.
Scenario:
1. User has a symlink on his homeshare to a directory, let's call it
dir1, which is automounted to the samba server (tried both Solaris samba
server and Sgi, same result).
2. In a subdirectory under dir1 there's another directory (dir2) which
contains a file (filename.wrl).
3. When the user directs Windows
2009 Dec 15
3
RFC: lchoose() vs lfactorial() etc
lgamma(x) and lfactorial(x) are defined to return
ln|Gamma(x)| {= log(abs(gamma(x)))} or ln|Gamma(x+1)| respectively.
Unfortunately, we haven't chosen the analogous definition for
lchoose().
So, currently
> lchoose(1/2, 1:10)
[1] -0.6931472 -2.0794415 NaN -3.2425924 NaN -3.8869494
[7] NaN -4.3357508 NaN -4.6805913
Warning message:
In
2000 Feb 25
1
lambda==0 in dpois() (PR#459)
The nice new log=TRUE option in dpois appears to mess up the
case where lambda=0 (I was trying to calculate the likelihood
of a saturated model). Because the behavior is now always to
calculate the probability in terms of exp(log(prob)), there's
a test for lambda<=0 which really needs to be only lambda<0.
dpois(0:5,0)
ought to give
1 0 0 0 0
but gives NaNs instead.
Here's
2006 Feb 22
2
How can I see how %*% is implemented?
I would like to see how the matrix multiplication operator %*% is implemented (because I want to see which external Fortran/C routines are used). How can I do so?
Best
S??ren
2008 Jan 08
2
[LLVMdev] Adding ClamAV to the llvm testsuite (long)
Hi Edwin,
I ran into two problems.
1. Using your config file and Makefile, I ran into issue compiling
with gcc:
gcc -I/Users/echeng/LLVM/llvm/projects/llvm-test/MultiSource/
Applications/ClamAV -I/Users/echeng/LLVM/llvm/projects/llvm-test/
MultiSource/Applications/ClamAV -I/\Users/echeng/LLVM/llvm/include -I/
Users/echeng/LLVM/llvm/projects/llvm-test/include -I../../..//include
2005 Feb 05
2
Problems compiling (configure) R on Ubuntu linux (debian)
Hello!
I would first like to appologice if this question does not fit on this
mailing-list.
I am new to Linux and I tried to compile R on my Ubuntu Warty linux. I
followed the instructions in "R Installation and Administration" manual. It
seams that there was a problem with "configure", since when running "make"
afterward gave me this reply:
make: *** No
2009 Feb 21
1
Install failure (PR#13545)
Hello:
Encountered a problem installing R on
CentOS release 5.2
This is a 64bit OS
I need to know if this will work on this server or do I need to change OS>
Thanks
Bob
I downloaded the source ( R-2.8.1.tar.gz ) due to no release being available
for CentOS.
My ./configure --with-x=no --with-readline=no R_PAPERSIZE='letter'
Failed:
./configure --with-x=no --with-readline=no