Displaying 6 results from an estimated 6 matches for "_c_".
Did you mean:
__
2009 May 08
1
dqrdc2_ dqrsl_ dtrsl_ missing from libs? compiling earth standalone
...problems from within R as an R module and
I get the following linker error:
earth.c:(.text+0x1a14): undefined reference to `dqrdc2_'
earth.c:(.text+0x1ae4): undefined reference to `dqrsl_'
earth.c:(.text+0x1d99): undefined reference to `dtrsl_'
earth.c includes:
extern _C_ int dqrdc2_(...
extern _C_ int dqrsl_(...
extern _C_ void dtrsl_(..
extern _C_ void daxpy_(...
extern _C_ double ddot_(...
I'm linking against libRblas.so and libRlapack.so so I did "nm
libRblas.so libRlapack.so" and found that there were no symbols for
dqrdc2_, dqrsl_, d...
2016 May 25
3
Suggestion: mkString(NULL) should be NA
On Wed, May 25, 2016 at 7:22 AM, Michael Lawrence <lawrence.michael at gene.com
> wrote:
> On Wed, May 25, 2016 at 4:23 AM, Jeroen Ooms <jeroen.ooms at stat.ucla.edu>
> wrote:
>
I'm not disagreeing with what's been said in this thread, but I can't help
but recall that I brought up this exact issue probably 15 years ago and was
told (by Brian, I believe)
2001 Apr 15
2
data manipulation in R
...d
by one or more observers. Thus the data are a
lower-triangular array AxB where each cell [i,j] has a
zero or one indicating whether observer i saw event j.
I am interested in how observers cluster in circuits
whereby observer _a_ sees events _1,2,3_, observer _b_
sees events _2,4,5_, observer _c_ sees event _4_, and
observer _d_ sees _4,6,7_. Observers a, b, c, d
comprise a circuit linked by the events they jointly
observed.
Given AxB, how can we use R to articulate the
circuits? Pseudocode for my SQL solution is below.
For each observation i:
- get all the events [j1,j2,...jk] obs...
2016 May 25
0
Suggestion: mkString(NULL) should be NA
...ieve) "don't do that" (pass a null pointer), which was
> perfectly fine. The real issue was not the behavior but that it was not
> documented or consistent. I've lived by the mantra since that you can never
> trust a pointer in R code. User must always check for NULL.
In _C_ code. This is true whether you are calling into the R C API or
any other C library: you as the C programmer need to make sure either
that passing NULL is OK or make sure you don't do that.
I wouldn't object to mkXXX checking for NULL and signaling an error
instead of segfaulting, but good...
2007 Oct 13
1
R API - optim
I am trying to use the R API to call optim functions (nmmin, vmmin, lbfgsb,
etc.) through a C program but I couldn't find the shared library to link
under the R-2.6.0 build which is compiled under Linux (REL5).
main.cpp:35: undefined reference to `Rf_initEmbeddedR(int, char**)'
main.cpp:41: undefined reference to `nmmin'
Thanks in advance for any help.
------------------------
2007 May 15
4
Need help with singleton worker
...rk, :worker_method_args => "b", :args =>
"_b_", :trigger_args => { :start => Time.now })
=> 1
>> MiddleMan.schedule_worker(:class => :my_worker, :job_key => :foo,
:worker_method => :do_work, :worker_method_args => "c", :args =>
"_c_", :trigger_args => { :start => Time.now })
=> 2
>> MiddleMan.schedule_worker(:class => :my_worker, :job_key => :foo,
:worker_method => :do_work, :worker_method_args => "d", :args =>
"_d_", :trigger_args => { :start => Time.now })
=> 3...