search for: nentering

Displaying 9 results from an estimated 9 matches for "nentering".

Did you mean: entering
2006 Jun 29
1
Passing argument in nested function calls
...so that when extractArgs() is called within getArgs(), it behaves the same way as getArgs() and extracts the argument and argument name? Can we unstring passed or change it into another mode? I'll appreciate any help or pointers. Thanks. Aarti getArgs <- function(...) { cat("\nEntering getArgs()\n\n") args <- list(...) cat("In getArgs(), names(args[1]) is ") cat(names(args[1])) cat(" and args[[1]] is ") cat(args[[1]]) cat("\n") passed <- paste(names(args),"=", sQuote(args)) extractArgs(passed)...
2005 Dec 03
2
How to catch value
Dear R users: I have a problem about catch the value from function. I have following two functions (part): fbolus1 <- function() {......... par<-data.frame(Parameter=c("kel","Vd"),Initial=c(0)) check(par) .....} check<-function(par) { if (par[ ,2] <= 0){ cat("\nEnter again (y/n) ?\n\n") ans<-readline() if (ans == "n" ){
2019 Feb 02
2
[llvm-xray] llvm-xray cannot log every functions
Hi there, I have a problem using the function call tracing tools that is designed in llvm tools set. My aim is to record every function call that a program makes when it run. However, for whatever reason, a simple matrix multiply c program that I wrote cannot record all the function calls that happened when the program run. Here is the program: matrix.c #include <stdio.h> void
2008 Mar 21
0
Fwd: Is select() untrustworthy on Windows when used with handles from popen3?
Any ideas? Dan ---------- Forwarded message ---------- From: Steve Shreeve <steve.shreeve at gmail.com> Date: Thu, Mar 13, 2008 at 10:51 AM Subject: Is select() untrustworthy on Windows when used with handles from popen3? To: djberg96 at gmail.com Dan, Thanks for your work on the win32util modules. I''ve created an expect-like library that allows one to easily script
2003 Oct 18
1
'passwd chat' for Debian Woody password sync
what is the 'passwd chat' line for Samba 2.2.3a-12.3 on Debian Woody that enables password synchronisation with Windows 2000 clients in a domain? I currently have this in smb.conf but it doesn't work: unix password sync = yes passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n I get the Windows message
2009 Jan 20
0
work-around for debugger broken (by changed behaviour of get under R 2.8?) when functions have ... arguments
Hello all, Sorry to trouble you, but this is a follow-up with a work-around to the problem I posted on R-help (http://article.gmane.org/gmane.comp.lang.r.general/136515). Is it possible to add the work-around or some equivalent to the utils package, please? I think this may be related to the changed behaviour of get under R 2.8 referred to in:
2006 Nov 21
1
strange R GUI crash
Hi all, I know I shouldn't really expect the following to work, but it provokes a crash of the GUI on my computer (Win xp professional). --- >sessionInfo() Version 2.3.1 (2006-06-01) i386-pc-mingw32 attached base packages: [1] "methods" "stats" "graphics" "grDevices" "utils" "datasets" [7] "base"
2011 Dec 23
2
missing value where TRUE/FALSE needed
Merry Xmas to all, I am writing a function and curiously this runs sometimes on one data set and fails on another and i cannot figure out why. Any help much appreciated. If i run the code below with data <- iris[ ,1:4] The code runs fine, but if i run on a large dataset i get the following error (showing data structures as matrix is large) > str(cluster.data) num [1:9985, 1:811] 0 0 0 0
2016 Nov 15
2
Missing objects using dump.frames for post-mortem debugging of crashed batch jobs. Bug or gap in documentation?
Martin, thanks for the good news and sorry for wasting your (and others time) by not doing my homework and query bugzilla first (lesson learned! ). I have tested the new implementation from R-devel and observe a semantic difference when playing with the parameters: # Test script 1 g <- "global" f <- function(p) { l <- "local" dump.frames() }