similar to: new error when upgrading :P "The semaphore timeout period has exp

Displaying 20 results from an estimated 100 matches similar to: "new error when upgrading :P "The semaphore timeout period has exp"

2004 May 28
1
How could I find R.exp?
Hi all, I try to create an import library for using dll. Following the instruction in the readme.package, I used the command “lib /def:R.exp /out:Rdll.lib”, however, the error message showed “Cannot open file R.exp”. I downloaded the source code R-1.9.0.tgz, but I can not find R.exp. Thanks! Rui Phone: (403)220-4501 Email: rwang@math.ucalgary.ca Department of Mathematics and Statistics
2011 Jul 23
2
standard error of exp(coef) from coxph
Dear List, Must be a silly question, but I was wondering whether there is a direct way of calculating "standard error of a HR or exp(coef)" from coxph objects x <- coxph(Surv(time, status) ~ age + inst, lung)> x coef exp(coef) se(coef) z page 0.0190 1.02 0.00925 2.06 0.04inst -0.0104 0.99 0.01028 -1.01 0.31 cheers, Ehsan [[alternative HTML
2009 Jan 15
1
logistic regression - exp(estimates)?
hello. I have a question on the interpretation of a logistic model. is it helpful to exponentiate the coefficients (estimates)? I think I once read something about that, but I cannot remember where. if so, how would be the interpretation of the exp(estimate) ? would there be a change of the interpretation of the ANOVA table (or is the ANOVA table not really helpful at all?). thanks for your
2002 Jul 09
1
broken inline exp in glibc/x86??!
I read the following in acinclude.m4: ## R_PROG_CC_FLAG_D__NO_MATH_INLINES ## --------------------------- ## In current glibc, inline version [x86] of exp is broken. ## We fix this by adding '-D__NO_MATH_INLINES' to R_XTRA_CFLAGS rather ## than AC_DEFINE(__NO_MATH_INLINES) as the former also takes care of ## compiling C code for add-on packages. Is this documented anywhere (where?), e.g.
2005 Apr 19
0
PATCH to support theora-exp in mplayer
attached patch adds support for the experimental theora branch to mplayer. you can get theora-exp from svn: svn co http://svn.xiph.org/experimental/derf/theora-exp/ The decoder here is feature-complete, up to and including all planned bitstream features for the initial Theora release. Some of these are not yet present even in the reference decoder. These include: - Support for non-VP3 style
2010 Mar 24
1
Sybase IQ Developer needed with 5-7 yrs exp
Hi Friends, Plz send profiles matching the requirement to murali-oY4F33sQL5bQT0dZR+AlfA@public.gmane.org Role : *Sybase IQ Developer* Location : *Tampa FL* Duration : *6m *Client : *Banking* *Sybase IQ Developer needed with 5-7 yrs exp* Thanks and Regards, Murali 571 483 2829 Javaji Systems Solutions Inc., www.javaji.com -- You received this message
2008 Jul 12
1
Error of exp() in a dll from Fortran
Hi, I have an error happened when I use exp() in my Fortran code. My Fortran code is SUBROUTINE f(n,c) REAL, INTENT(IN) :: n(10) REAL, INTENT(OUT) :: c(10) INTEGER :: k DO k=1, 10 c(k) = exp( n(k) ) END DO END I compiled the fortran code as a dll Rcmd SHLIB -o f.dll f.f -L -lacml Then I loaded the dll file to R, and try some number >
2012 Mar 31
1
[LLVMdev] llvm.exp.f32 didn't work
Hi, I found that llvm.exp.f32 didn't work but sqrt works well. I implemented a function like define inlinehint float "my_exp"(float %.value) { .body: %0 = call float @llvm.exp.f32(float %.value) ret float %0 } declare float @llvm.exp.f32(float) nounwind readonly But it generates following ASM: 00280072 movups xmm0,xmmword ptr [esp+8] 00280077 movss dword ptr
2003 Jul 01
0
Local usr groups + pswd exp.
Well hello ya all. first i would like to say, that we succesfully switched from a wind*s pdc to the samba 3 beta1 pdc. it all looks to work fine., we use tdbsam as pasword back end.. the only worries i get is the fact that some how the local user groups (administrator, users, guest ect ect) won't realy work. i mapped them in the same way i did with the domain groups (and those work just
2007 Sep 12
1
theora-exp encoder issue
Hi, I'm switching from the mainstream theora trunk to the exp one and I encounter a problem with the encoder. Every video I encode are played like a 'mosaic', I do not know how to say that. The picture is just a bunch of coloured pixels. During the encoding process the video stream is defined like that: File stream.yuv is 320x240 15.00 fps 420 video. Why 420 ? Why not YUV like for
2006 Mar 28
0
theora-exp namespacing
All, There was a discussion on IRC yesterday about cleaning up Derf's theora-exp implementation so it can be used in frameworks that also link to libtheora. The encoder doesn't work at the moment, but the decoder is faster and implements more of the spec than libtheora, so this would be a useful option for people trying to deploy players. The main thing that needs to be done is to
2011 Jul 05
0
Prettier axis labels when using log (or exp!!) scales in Lattice (follow up)
Hi all, my mail is a follow up of this thread http://tolstoy.newcastle.edu.au/R/e12/help/10/11/4172.html. I'm trying to alter the labels of an xyplot where the y variable is in the order of millions (cell counts) I've found plenty of examples on the R mailing list archives as well as in the book Lattice: Multivariate Data Visualization with R at chapter 8. Unfortunately all the
2011 Nov 20
1
Deleting multiple rows from a data matrix based on exp value
Dear List, I have a data matrix that consists of ~4500 rows and 25 columns (i.e. an exprSet object that I converted via the 'exprs' function into a data matrix) Now I want to remove/delete the rows where all exp. values in that particular row are below or equal to a specific cut-off value (e.g 1.11) I have tried using several commands to address this issue: >Matrix[rowSums(Matrix
2012 Feb 22
3
gamlss results for EXP and LNO seem to have reversed AIC scores
Hi, I'm a bit puzzled by the gamlss fitting of exponential and lognormal data. Gamlss seems to think that exponentially distributed data fits better with a lognormal distribution, and vice versa. For example, X <- rexp(1000) Gexp <- gamlss(X~1,family=EXP) # X~1 is X tilde 1 GAMLSS-RS iteration 1: Global Deviance = 2037.825 GAMLSS-RS iteration 2: Global Deviance = 2037.825 Glno
2012 Sep 01
2
Computing 'exp(1e3)*0' correctly....
I have some trouble to deal the value of 'NaN'. For example, > exp(1e3) [1] Inf > exp(1e3)*0 [1] NaN The correct answer should be 0 rather than NaN. I will very appreciate if anyone can share some technique to get a correct answer.
2012 Jan 30
2
Euler identity with complex exp
Hi, Am i doing something silly here in expecting Euler's formula to be handled by exp? exp( ix ) = cos x + i sin x. The first example below follows this, the others not. Thanks for the education! > exp( complex(real = 0, imag = 2*pi) ) [1] 1-0i > exp( complex(real = pi, imag = 2*pi) ) [1] 23.14069-0i > exp( complex(real = pi/2, imag = 0) ) [1] 4.810477+0i [[alternative HTML
2003 May 01
1
ldAIX4 does not generate Rlapack.exp (PR#2893)
Full_Name: Richard L. Grubb Version: 1.7.0 OS: AIX 4.3.3 Submission from: (NULL) (130.76.96.17) src/modules/lapack/Makefile executes the tools/ldAIX4 script and supplies, as arguments to ldAIX4, several object file names with filename extensions of .lo. The ldAIX4 script did not generate the file etc/Rlapack.exp until I changed ldAIX4 as follows: Original context: # Check for object or archive
2006 Nov 14
1
R.exp file for building packages
I am trying to port some C code from S-Plus (7.0.6) to R (2.4.0) under Windows XP SP2. I use Visual C++ 6.0 to build my library for S-Plus, so I'd like to stick with that set up, if possible. According to the README.packages file, I need the file R.exp (containing functions exported from R.dll, I'm guessing) to build an R package with VC++. >From what I've read in the archives of
2019 Aug 31
2
clang.exp/gn
Hello, I was wondering who owns the clang.exp bots which builds llvm using gn? I need to add another generator to clang-tablegen, but the build seems to be failing: http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-gn/builds/4816 I'd appreciate it if someone could take a look at the problem. Thank you, Nandor Licker
2004 Dec 23
2
[LLVMdev] lli.exe.exp: No such file or directory
Hi, What is mklib trying to do with lli.exe.exp? However, lli.exe gets linked anyway. -------------- llvm[2]: Linking Debug executable lli /C/projects/build/MinGW/llvm-1-1/mklib: /C/projects/build/MinGW/llvm-1-1/Debug/bin/.libs//C/projects/build/MinGW/llvm-1-1/Debug/bin/lli.exe.exp: No such file or directory llvm[2]: ======= Finished Linking Debug Executable lli -------------- Henrik.