Displaying 2 results from an estimated 2 matches for "gopher4".
Did you mean:
gopher
2007 May 13
1
Help understanding LAPACK symbol resolution
...economy, i.e., no use for the symbol in R routines, rather
than for other nefarious reasons (?? some fundamental incompatibility
with R?)
I guess that most of my package users will have an R built without
special attention to their lapack library, so will start with
something like
mtmorgan at gopher4:~> R CMD config LAPACK_LIBS
-L/home/mtmorgan/arch/x86_64/R-devel/lib -lRlapack
My R is built with --enable-R-shlib, so predictably enough
R CMD INSTALL --clean <pkg>
is 'successful' (zsysv_ is marked as unresolved in the <pkg>.so, but
this doesn't stop compiling and li...
2007 Jun 24
2
matlab/gauss code in R
...un 2007 06:20:27 -0700
> From: Martin Morgan <mtmorgan en fhcrc.org>
> Subject: Re: [R] extract index during execution of sapply
> To: Christian Bieli <christian.bieli en unibas.ch>
> Cc: R help list <r-help en stat.math.ethz.ch>
> Message-ID: <6phodj85dno.fsf en gopher4.fhcrc.org>
> Content-Type: text/plain; charset=us-ascii
>
> Christian,
>
> A favorite of mine is to use lexical scope and a 'factory' model:
>
> > fun_factory <- function() {
> + i <- 0 # 'state' variable(s), unique to each fu...