Displaying 20 results from an estimated 110 matches similar to: "Dyn.load of sharing object with GSL library"
2012 Jun 16
0
R CMD -lgsl -lgslcblas *.c returns a fatal error: gsl/gsl_rng.h no such file or directory exists
Hello,
I tried this posted on the R devel subforum but no help so far. Maybe the
wider net will be fruitful. Probably a pretty simple issue.
The short story goes, I'm writing C source code and compiling it in as *.dll
in the windows terminal by R CMD SHLIB foo.c. It works, I'm on a 64-bit
system. I have the lastest R 2.15.0 and Rtools, and I am using the gcc 4.6.3
compiler.
However,
2004 Sep 09
3
Dyn.load of sharing object with GSL library
Following the recommendation of Prof. Ripley, I have created the Makevars
file with the line:
PKG_LIBS="-L/usr/lib/libm -lm -L/usr/local/lib/libgsl -lgsl -L/usr/local/lib
/libgslcblas -lgslcblas"
in the working directory.
Now I have the code file Example3.c which computes the Bessel function value
(the example is taken from the GSL reference book).
I am running:
R CMD SHLIB Example3.c
2012 Jul 24
1
Trouble with Installing R Package gsl
Dear R users:
I have a problem when installing the R package *gsl*. The procedure is as
follows:
(1) Since it needs a GSL vesion >=1.12, and the GSL library on the serve I
use is too old, I download GSL 1.15 and install it in my own account, such
as $HOME/local/gsl. Because I do not have root access, so it cannot be
installed in standard folder.
(2) Then I download the source code of R
2012 Jun 09
0
-lgsl -lgslcblas fatal error no such file or directory
Hello,
Novice programmer.
I'm writing C source code and compiling it in as *.dll in the terminal by R
CMD SHLIB foo.c. It works, I'm on a 64 bits windows system. I have the
lastest R 2.15.0 and Rtools using the gcc 4.6.3 compiler.
However, that was a hello world run, and I installed GSL for the 64 bit
system for fast MCMC. The Rcpp package was easy to use, but I opted for a C
with GSL
2009 Jan 06
1
Installation of R package gsl and its corresponding GSL library
Hi
I want to install the R package gsl, which is a wrapper to the library GSL.
Installation fails as it seems that I did not install the right GSL library:
* Installing *source* package 'gsl' ...
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of
2008 Jan 04
1
GSL version >= 1.8 CentOS 4.x ?
Hi! Is there a version of gsl library >= 1.8 available for centos 4.x?
If indeed there is none (as i founded nothing so far) has someone some
idea how should i make the rpm from src.rpm ?
Thank you,
Best regards,
Adrian
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3092 bytes
Desc: S/MIME Cryptographic
2004 Jul 02
0
GSL library and R?
Hello everybody,
Is-it possible to include GSL library in the .C Interface?
Best regards
Youssef
--
Youssef Toubouti, MSc
Research Institute, McGill University Health Centre
The Montreal General Hospital
Division of Clinical Epidemiology, L10-508
1650, Cedar Ave
Montreal (Quebec) H3G 1A4
Tel: (514) 934-1934 X 44730
Fax: (514) 934-8293
Home:(514) 522-5045
2011 Apr 14
1
Using GSL Routines
Dear R-programmers,
I am trying out certain methods in R, and the statistics require me to
calculate n-(sample size) dimensional equations. They are not really very
hard to solve - my home-brew implentation of Newton-Raphson in R succeeds
most of time with simulated data. (Note that I am assured of a unique
solution by theory). Problem comes in with real data, for which I should
really implement
2004 Sep 09
1
Adding GSL library path to SHLIB
Dear R-list people,
I asked a similar question a few hours before. I will try to be more specific.
We like to add the GSL library to the file SHLIB in order to make it possible to run the C code using GSL functions from R.
We read that the path to the libgsl.a should be added to the line shlib_libadd=' ' in the file SHLIB but it does not work on our system. Dyn.load fails with error
2004 Nov 18
1
Off Topic: GSL installation for Windows
Hi R People!
Has anyone installed the Gnu Scientific Library on a Windows system, please?
I'm having a dreadful time with that.
Any advance would be much appreciated.
Sincerely,
Laura Holt
mailto: lauraholt_983 at hotmail.com
2004 Nov 19
0
new package gsl, a wrapper for the Gnu Scientific Library
Dear list
R package "gsl" is now on CRAN. This is a wrapper for
the special functions of the Gnu Scientific Library (GSL). Functions include
elliptic integrals, Airy functions, hypergeometric functions, and so on.
Most functions optionally return error estimates.
This library is a little odd in that documentation is limited to a
pointer to the GSL reference
manual, and occasional
2004 Nov 19
0
new package gsl, a wrapper for the Gnu Scientific Library
Dear list
R package "gsl" is now on CRAN. This is a wrapper for
the special functions of the Gnu Scientific Library (GSL). Functions include
elliptic integrals, Airy functions, hypergeometric functions, and so on.
Most functions optionally return error estimates.
This library is a little odd in that documentation is limited to a
pointer to the GSL reference
manual, and occasional
2012 Jul 25
0
gsl lib version detected wrong during install
Hello everyone,
I've tried to install the R gsl package but without success because R claims
there needs to be a gsl library version >= 1.12 installed on the system.
Actually gsl library version 1.12 is installed locally in my home directory
and I set PATH and LD_LIBRARY_PATH in .bash_profile to point to
corresponding bin and lib directory. gsl-config is accessible from
everywhere in the
2012 Jul 30
0
Unable to install gsl package
I'm attempting to install the gsl package using the following command:
install.packages("c:/users/mike/documents/R/win-library/gsl_1.9-9.tar.gz",repos=NULL,type="source")
My attempt is failing. Please help.
The message supplied is:
Installing package(s) into ‘C:/Users/Mike/Documents/R/win-library/2.15’
(as ‘lib’ is unspecified)
* installing *source* package
2009 Nov 20
1
how to link C code with gsl from R CMD and dyn.load
Hi,
I am writing a function in C that is meant to be called by R. In the C
function, I used a gsl function gsl_stats_mean. The code is as simple as
below
void gsl(double *m, int *dim){
int r, c;
r = dim[0];
c = dim[1];
double mean = gsl_stats_mean(&m[0], 1, r);
Rprintf("mean = %f\n", mean);
}
The C code is succesfully compiled and the output is as follows.
$ R CMD SHLIB
2007 Oct 03
1
error installing gsl pkg
Newbie here (to R) and running Linux...
> install.packages("gsl","~/R")
...
trying URL 'http://cran.wustl.edu/src/contrib/gsl_1.8-4.tar.gz'
Content type 'application/x-tar' length 57051 bytes
opened URL
==================================================
downloaded 55Kb
* Installing *source* package 'gsl' ...
checking for gcc... gcc
checking for C
2014 Oct 01
1
gsl package on mavericks
hello
I maintain the gsl R package, and many users have recently reported that
the package
does not install from source under macosx 10.9 ("mavericks").
Users typically install the gnu GSL library and are able to compile and run
a small "hello world" program which executes some of the Bessel functionality
of the library; but under mavericks the configure script (which uses
2007 Sep 16
1
Using gsl libraries in R packages
I have some compiled C code that I call from R, and I would like to
distribute this code as an R package through CRAN. In the C code, I use the
gsl numerical libraries, mainly for the BLAS interface, some linear algebra
functions, and some optimization routines. As I prepare this code to
conform to the specs for R packagtes, I am wondering if there is a
restriction on the use of external
2018 Feb 02
0
mpfr and gsl problem on SLES11 SP4
Dear Team,
Maybe somebody already tried to install mpfr and gsl packages for R on SLES.
Exactly I try to install Rmpfr_0.6-1.tar.gz and gsl_1.9-10.3.tar.gz on SLES11 SP4.
These are the available packages from official SLES SDK media:
rtest:/home/ruser # rpm -qa | grep -i gsl
gsl-devel-1.11-1.30
gsl-1.11-1.30
rtest:/home/ruser #
As I understand gsl is from 1.11 till 1.30 level.
2007 Nov 23
0
package gsl assumes incorrect gcc version during install (PR#10456)
On 22 November 2007 at 20:00, leviwaldron at gmail.com wrote:
| Full_Name: Levi Waldron
| Version: 2.5.1
| OS: Ubuntu Gutsy
| Submission from: (NULL) (206.248.157.88)
|
|
| I installed libgsl0-dev then tried to install the gsl cran package,
| unsuccessfully (see output below). As a workaround I created a symbolic link to
| /usr/bin/gcc-4.2, ie:
|
| sudo ln -s /usr/bin/gcc-4.1 /usr/bin/gcc-4.2