search for: axel

Displaying 20 results from an estimated 682 matches for "axel".

2003 Sep 19
4
newby problem - concatenate lists
Hi, a very basic question: What ist the easiest way in R to concatenate two lists of vectors? E.g, I have x<-list(c(1,2)) y<-list(c(3,4)) and I want to receive list(c(1,2),c(3,4)) thank you! Axel ________________________________________ Fraunhofer Institut fuer Arbeitswirtschaft und Organisation (IAO) Dipl. Inf. Axel Benz Nobelstr. 12 D-70569 Stuttgart Germany Tel. +49(0)7119702289 Fax. +49(0)7119702192 mail: mailto:axel.benz@iao.fhg.de www: http://www.vis.iao.fhg.de _______________________...
2015 Jan 13
2
[LLVMdev] MCJIT handling of linkonce_odr
...quickly when encountering a weak symbol. I would very much appreciate if you could implement this; I don't have enough knowledge of the MCJIT nor llvm CodeGen internals... I will happily try it out and provide you with feedback, though! :-) Thank you *so* much for your fast reaction! Cheers, Axel On 13.01.2015 00:30, Keno Fischer wrote: > Hi Axel, > > the problem is that weak symbols are not handled in RuntimeDyld at all. > The proper solution is probably to add a separate case for weak symbols > (where we're already taking care of common symbols) in > RuntimeDyld...
2003 Sep 13
5
bug or feature? (PR#4150)
Full_Name: Axel Benz Version: 1.7.1 OS: Windows Submission from: (NULL) (137.251.33.43) This feature seems to be a basic bug: > 1=="1" [1] TRUE > as.numeric(1)=="1" [1] TRUE > as.numeric(1)==as.character("1") [1] TRUE isn't it necessary to distinguish beteen numbers a...
2004 Aug 29
7
SMS & Asterisk
Hi all! I am intrested in the following scheme My mobile phone -> SMS to SOMETHING -> Redirect to FWD number -> FDW redirect to my * -> My * doing smtg There are companies like calluk.com that provide DIDs for free, but they do not support SMS. In http://www.voip-info.org/wiki-Asterisk+cmd+Sms they say "Works to ETSI ES 201 912 compatible with BT SMS PSTN service in UK"
2016 Apr 01
3
TensorFlow in R
Hi All, I didn't have much success through my Google search in finding any active R-related projects to create a wrapper around TensorFlow in R. Anyone know if this is on the go? Thanks, Axel. [[alternative HTML version deleted]]
2016 Apr 01
3
TensorFlow in R
Hi All, I didn't have much success through my Google search in finding any active R-related projects to create a wrapper around TensorFlow in R. Anyone know if this is on the go? Thanks, Axel. [[alternative HTML version deleted]]
2009 Aug 31
4
[LLVMdev] C++ Interpreter
...colleagues and I would like to meet you informally in the morning of Saturday, Oct 3, right after the dev meeting, if possible somewhere close to the Apple campus. We'd like to hear what your goals are, whether we can combine our work, and discuss experiences, problems and possible solutions. Axel.
2007 Mar 26
2
Rpm builders: Dovecot spec file
Maybe best asked to Axel... I'm re-building my server from scratch (the old one was MDK 10.1 -> Mandriva 2006.0 with Postfix/Courier) and I want to install the latest versions postfix/mysql/postfixadmin/dovecot/squirrelmail. I've been building Dovecot (and postfix) from tarballs/srpm in the past so I know more...
2009 Aug 31
0
[LLVMdev] C++ Interpreter
2009/8/31 Axel Naumann <Axel.Naumann at cern.ch>: > we want to implement a C++ interpreter using LLVM and clang Isn't clang going on that direction anyway? cheers, --renato Reclaim your digital rights, eliminate DRM, learn more at http://www.defectivebydesign.org/what_is_drm
2014 Jan 18
6
My first package
...ev version (and where should I get them)? 2) Not sure if this one belongs to this list. Does licensing follow the logic of "inheritance" (i.e. if all the package dependencies of my package are "GPL-2 | GPL-3", does my package need to use the same license agreement? Thanks! Axel. [[alternative HTML version deleted]]
2011 Feb 26
2
Reproducibility issue in gbm (32 vs 64 bit)
...bution="gaussian") summary(gbmfit) ### Results on R 2.12.0 (32-bit) var rel.inf 1 xc[, 3] 49.76143 2 xc[, 1] 27.27432 3 xc[, 2] 22.96425 > ### Results on R 2.12.0 (64-bit) > summary(gbmfit) var rel.inf 1 xc[, 1] 50.23857 2 xc[, 3] 49.76143 3 xc[, 2] 0.00000 Thanks, Axel. [[alternative HTML version deleted]]
2003 Sep 26
2
performance question
...does this need much computing time?) Is it maybe better to work with locally visible variables and nested functions in the optimized code? I have already used Rprof (and I could speed up the code a lot by the information from Rprof), but it does not tell me about that. Thank you for your hints! Axel ________________________________________ Fraunhofer Institut fuer Arbeitswirtschaft und Organisation (IAO) Dipl. Inf. Axel Benz Nobelstr. 12 D-70569 Stuttgart Germany Tel. +49(0)7119702289 Fax. +49(0)7119702192 mail: mailto:axel.benz@iao.fhg.de www: http://www.vis.iao.fhg.de ______________________...
2017 Sep 21
3
Add wrapper to Shiny in R package
...t("n", "Bins", 5, 100, 20)), mainPanel(plotOutput("hist")) ) ), server = function(input, output) { output$hist <- renderPlot( hist(xs, breaks = input$n, col = "skyblue", border = "white") ) } ) Thank you, Axel. [[alternative HTML version deleted]]
2017 Sep 21
0
Add wrapper to Shiny in R package
Dear Axel, I've used environment for such problems. assign("xs", xs, envir = my.env) in the myApp function get("xs", envir = my.env) in the server function Best regards, ir. Thierry Onkelinx Statisticus/ Statiscian Vlaamse Overheid / Government of Flanders INSTITUUT VOOR NATUUR-...
2013 Feb 10
3
Constrained Optimization in R (alabama)
...) h[1] <- x[1] + x[3] -1 h[2] <- x[2] + x[4] -1 h[3] <- x[1] * x[3] h[4] <- x[2] * x[4] h } res <- constrOptim.nl(par = c(1, 1, 1, 1), fn = ff, heq = heq) res$convergence #why NULL? matrix(round(res$par, 2), 2, 2) #why constraints are not satisfied? Axel. [[alternative HTML version deleted]]
2015 Jan 12
2
[LLVMdev] MCJIT handling of linkonce_odr
...vm::RuntimeDyldImpl::resolveRelocations()? Or is this just a missing case somewhere? That's e.g. with $ lli --version LLVM (http://llvm.org/): LLVM version 3.6.0svn Optimized build. Built Jan 12 2015 (10:52:59). Default target: x86_64-unknown-linux-gnu Host CPU: corei7-avx Cheers, Axel.
2017 Sep 21
1
Add wrapper to Shiny in R package
...mainPanel(plotOutput("hist")) ) ), server = function(input, output) { get("xs", envir = my.env) output$hist <- renderPlot( hist(xs, breaks = input$n, col = "skyblue", border = "white") ) } ) myApp(rnorm(100)) Axel. On Thu, Sep 21, 2017 at 11:13 AM, Thierry Onkelinx <thierry.onkelinx at inbo.be > wrote: > Dear Axel, > > I've used environment for such problems. > > assign("xs", xs, envir = my.env) in the myApp function > get("xs", envir = my.env) in the server...
2005 Dec 13
4
0/1 vector for indexing leads to funny behaviour (PR#8389)
Full_Name: Axel Rasche Version: 2.2.0 OS: Linux Submission from: (NULL) (141.14.21.81) Dear Debuggers, This is not a serious problem. Are 0/1 vectors intended to be used as index vectors? If yes, there is a bug. If not, it leads just to some funny behaviour rather than an error message. In the appendix is some...
2015 Dec 02
3
lvm snapshot
On Wed, Dec 02, 2015 at 08:53:39PM +0100, Axel Glienke wrote: > Creating snapshot: > > [root at lvmtest ~]# lvcreate -L5G -s -n root_snap /dev/centos/root > Reducing COW size 5,00 GiB down to maximum usable size 2,94 GiB. > Logical volume "root_snap" created. > [root at lvmtest ~]# lvs > LV VG At...
2010 Feb 21
4
R on 64-Bit…
...-bit and installed R on any of those, this is all I need to have R working on 64-bit. How about installing specialized packages? Are the packages on the CRAN repositories “ready tho use” on these systems or do I have to do any additional work to get them going? Thanks in advance for your help! Axel. [[alternative HTML version deleted]]