Displaying 20 results from an estimated 82 matches for "nakama".
2015 Jul 01
5
additional leap second
...",
+ "2012-6-30", "2015-6-30")
.leap.seconds <- strptime(paste(.leap.seconds , "23:59:60"),
"%Y-%m-%d %H:%M:%S")
c(as.POSIXct(.leap.seconds, "GMT")) # lose the timezone
Best Regards,
--
Eiji NAKAMA <nakama (a) ki.rim.or.jp>
"\u4e2d\u9593\u6804\u6cbb" <nakama (a) ki.rim.or.jp>
2016 Dec 01
2
Different results for cos,sin,tan and cospi,sinpi,tanpi
...1 )|| /* 2^53-1 */
+ ( x < -9007199254740991 ) ) /* -2^53-1 */
+ return tan(M_PI * x);
+
x = fmod(x, 1.); // tan(pi(x + k)) == tan(pi x) for all integer k
// map (-1,1) --> (-1/2, 1/2] :
if(x <= -0.5) x++; else if(x > 0.5) x--;
--
Best Regards,
--
Eiji NAKAMA <nakama (a) ki.rim.or.jp>
"\u4e2d\u9593\u6804\u6cbb" <nakama (a) ki.rim.or.jp>
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...
2009 Feb 19
2
Build R-2.8.1 on AIX5.3
...found.
rtld: 0712-002 fatal error: exiting.
Error: unable to load R code in package 'methods'
Execution halted
I found there is someone meet same problem when he build R-2.7.0 by searching r-help, and he used a patch to resolve this issue. The patch¡¯s location is http://prs.ism.ac.jp/~nakama/AIX/changefiles. But I can not find a patch R-2.8.1 in this path.
So I want to know what I can do if I want to build R-2.8.1 on AIX5.3
In addition I use IBM compiler with below parameter:
OBJECT_MODE=64
LIBICONV=/where/libiconv/installed
CC="xlc_r -q64"
CFLAGS=&q...
2014 Oct 14
1
[Fwd: Re: AIX-5.3 Issue installing Matrix Package]
Hi,
Please help.
Regards,
Shivali
---------------------------- Original Message ----------------------------
Subject: Re: [Rd] AIX-5.3 Issue installing Matrix Package
From: shivali at mail.ncmrwf.gov.in
Date: Wed, October 8, 2014 3:31 pm
To: "Ei-ji Nakama" <nakama at ki.rim.or.jp>
Cc: "Martin Maechler" <maechler at stat.math.ethz.ch>
"R Development List" <r-devel at r-project.org>
--------------------------------------------------------------------------
Hi ,
Thanks, but i tried with bash al...
2010 Dec 04
1
SurviveGotoBLAS2 for Win64 (human sacrifice release)
Hi,
I put below Rblas.dll(GotoBLAS2 for Win64).
http://prs.ism.ac.jp/~nakama/SurviveGotoBLAS2/binary/windows/x64/Rblas.dll
It's a tryal phase.
--
EI-JI Nakama? <nakama (a) ki.rim.or.jp>
"\u4e2d\u9593\u6804\u6cbb"? <nakama (a) ki.rim.or.jp>
2016 Dec 01
2
Different results for cos,sin,tan and cospi,sinpi,tanpi
>>>>> Martin Maechler <maechler at stat.math.ethz.ch>
>>>>> on Thu, 1 Dec 2016 09:36:10 +0100 writes:
>>>>> Ei-ji Nakama <nakama at ki.rim.or.jp>
>>>>> on Thu, 1 Dec 2016 14:39:55 +0900 writes:
>> Hi,
>> i try sin, cos, and tan.
>>> sapply(c(cos,sin,tan),function(x,y)x(y),1.23e45*pi)
>> [1] 0.5444181 0.8388140 1.5407532
>> However, *pi r...
2016 Dec 01
1
Different results for cos,sin,tan and cospi,sinpi,tanpi
...>
>
> On 01/12/2016 09:12, Martin Maechler wrote:
>>>>>>>
>>>>>>> Martin Maechler <maechler at stat.math.ethz.ch>
>>>>>>> on Thu, 1 Dec 2016 09:36:10 +0100 writes:
>>
>>
>>>>>>> Ei-ji Nakama <nakama at ki.rim.or.jp>
>>>>>>> on Thu, 1 Dec 2016 14:39:55 +0900 writes:
>>
>>
>> >> Hi,
>> >> i try sin, cos, and tan.
>>
>> >>> sapply(c(cos,sin,tan),function(x,y)x(y),1.23e45*pi)
>> &g...
2009 Mar 16
6
R with MKL
Hi,
I have seen a lot of problems from people trying to compile R with
MKL. So I am writing my experience in case it helps and to ask one
question. I installed R-2.8.1.patched in Ubuntu 9.04 (gcc 4.3.3) using
MKL 10.1.1.019.
I configured correctly (following MKL userguide) with :
sudo ./configure --with-blas="-I/opt/intel/mkl/10.1.1.019/include
-L/opt/intel/mkl/10.1.1.019/lib/em64t
2009 Mar 16
6
R with MKL
Hi,
I have seen a lot of problems from people trying to compile R with
MKL. So I am writing my experience in case it helps and to ask one
question. I installed R-2.8.1.patched in Ubuntu 9.04 (gcc 4.3.3) using
MKL 10.1.1.019.
I configured correctly (following MKL userguide) with :
sudo ./configure --with-blas="-I/opt/intel/mkl/10.1.1.019/include
-L/opt/intel/mkl/10.1.1.019/lib/em64t
2015 Jul 01
1
additional leap second
...hanks, I was working on this.
>
> There are other changes needed in src/main/datetime.c and ?.leap.seconds
> which I will commit shortly, and the example in hist.POSIXt() needed
> alteration (it seems DJM did not run 'make check'!).
>
>
>
> On 01/07/2015 06:20, Ei-ji Nakama wrote:
>>
>> hi,
>>
>> Index: leap_second/src/library/base/R/zdatetime.R
>> ===================================================================
>> --- leap_second/src/library/base/R/zdatetime.R (revision 68608)
>> +++ leap_second/src/library/base/R/zdate...
2006 Apr 14
5
UTF8 letters are imaged incorrectly (PR#8770)
Full_Name: Mikhail Bocharov
Version: 2.2.1
OS: Linux
Submission from: (NULL) (62.148.130.28)
Cyrillic UTF8 letters are imaged incorrectly
Sorry, but English is not my native language
My operating system is Gentoo-linux. Now i want get the gparhics with russian
title
for example: plot(1:20, type='l',
main='Утечка')
2005 May 26
3
Buidling R on Linux (Itanium) fails (PR#7897)
Full_Name: Reinhold Bader
Version: 2.1.0
OS: SLES 9
Submission from: (NULL) (129.187.48.1)
I tried to build R using the Intel compilers (icc, ifort) and the Math Kernel
Libraries
for BLAS/LAPACK
Optimizations used were -O3, and the
FPICFLAGS="-fpic"
was exported.
The build failed with the following error message:
...
dumping R code in package 'methods'
Saving namespace image
2007 Jun 24
2
problem gsub in the locale of CP932 and SJIS (PR#9751)
Full_Name: Ei-ji Nakama
Version: R-2.5.0
OS: any
Submission from: (NULL) (219.117.236.5)
problem by operation of gsub in the locale of CP932 and SJIS.
The inconvenient character code which used 0x5c after the first byte.
--- R-2.5.0.orig/src/main/character.c 2007-04-03 11:05:05.000000000 +0900
+++ R-2.5.0/src/main/ch...
2003 Aug 06
2
L10N and i18n of R
Dear R-users of non-English speaking countires.
Maybe a good news for those who want to use R in their
local languages. Recently two Japanese, E. Nakama and
M. Okada, succeeded in "making R speak Japanese". At
present, R can handle Japanese (as well as other languages,
I guess) character strings if one use consoles which
can understand Japanese. Also P. Murrell kindly
provided a facility to plot hundreads of Japaense
characaters as graphi...
2003 Aug 06
2
L10N and i18n of R
Dear R-users of non-English speaking countires.
Maybe a good news for those who want to use R in their
local languages. Recently two Japanese, E. Nakama and
M. Okada, succeeded in "making R speak Japanese". At
present, R can handle Japanese (as well as other languages,
I guess) character strings if one use consoles which
can understand Japanese. Also P. Murrell kindly
provided a facility to plot hundreads of Japaense
characaters as graphi...
2016 Aug 04
1
R, OpenBLAS and OMP_NUM_THREADS
Hi,
I was be half asleep in the heat ...
2016-08-04 0:04 GMT+09:00 Dirk Eddelbuettel <edd at debian.org>:
>
> On 3 August 2016 at 16:45, Gordon Ball wrote:
> | On 02/08/16 03:10, Ei-ji Nakama wrote:
> | > Hi,
> | >
> | > Create /etc/profile.d/openblas.sh.
> | > Write the following during in this file.
> | > OPENBLAS_NUM_THREADS = 1
> | > export OPENBLAS_NUM_THREADS
> | >
> | > OPENBLAS_NUM_THREADS environment variable does not affect the O...
2018 Jul 10
1
problem with display of complex number
...74767 +0900
@@ -381,6 +381,7 @@
r->i = fround(pow10 * x->i, digits)/pow10;
} else {
digits = (double)(dig);
+ if(digits < 1) digits=1; /* a little better */
r->r = fround(x->r, digits);
r->i = fround(x->i, digits);
}
--
Best Regards,
--
Eiji NAKAMA <nakama (a) ki.rim.or.jp>
"\u4e2d\u9593\u6804\u6cbb" <nakama (a) ki.rim.or.jp>
2003 Oct 21
2
Problem R-1.8.0 library tcltk on Tcl-8.0.5 (PR#4699)
Full_Name: Eiji Nakama
Version: R-1.8.0
OS: linux(VineLinux)
Submission from: (NULL) (219.117.236.13)
I build by Tcl8.0.5 and R-1.8.0.
> library(tcltk)
Error in dyn.load(x, as.logical(local), as.logical(now)) :
unable to load shared library "/usr/lib/R/library/tcltk/libs/tcltk.so":
/usr/lib/R/library/...
2015 Jul 01
0
additional leap second
Thanks, I was working on this.
There are other changes needed in src/main/datetime.c and ?.leap.seconds
which I will commit shortly, and the example in hist.POSIXt() needed
alteration (it seems DJM did not run 'make check'!).
On 01/07/2015 06:20, Ei-ji Nakama wrote:
> hi,
>
> Index: leap_second/src/library/base/R/zdatetime.R
> ===================================================================
> --- leap_second/src/library/base/R/zdatetime.R (revision 68608)
> +++ leap_second/src/library/base/R/zdatetime.R (working copy)
> @@...