similar to: *** caught segfault *** address 0x18, cause 'memory not mapped'

Displaying 13 results from an estimated 13 matches similar to: "*** caught segfault *** address 0x18, cause 'memory not mapped'"

2000 Mar 06
1
nlm and optional arguments
It would be really nice if nlm took a set of "..." optional arguments that were passed through to the objective function. This level of hacking is probably slightly beyond me: is there a reason it would be technically difficult/inefficient? (I have a vague memory that it used to work this way either in S-PLUS or in some previous version of R, but I could easily be wrong.) Here's
2006 May 11
2
Problem setting locale for voicemail
I've set voicemail almost successfully, only a minor detail remains :-) I can't get the dates in my local language (spanish). In sip.conf, zapata.conf and voicemail.conf, I've set: language=es and my locale is "es" also. However, the days and months names still appear in english in the emails!!! Thursday 11 de May de 2006, 18:49:34. instead of Martes 11 de mayo de
2005 Oct 11
2
Sometimes having problems finding a minimum using optim(), optimize(), and nlm() (while searching for noncentral F parameters)
Hi everyone. I have a problem that I have been unable to determine either the best way to proceed and why the methods I'm trying to use sometimes fail. I'm using the pf() function in an optimization function to find a noncentrality parameter that leads to a specific value at a specified quantile. My goal is to have a general function that returns the noncentrality parameter that
2010 Oct 13
1
Wierd nlm behaviour in 2.10.1 and 2.12.0 [Sec=Unclassified]
Hi all, When upgrading to 2.11.1 recently I noticed different results being produced by my code. After much digging I have finally narrowed it to a call to nlm(). This can be replicated by: FixedRemovals<-1836180125888 AbStageInitial<-2223033830403 Rates<- 0.3102445 nlm(function(rootM,Abund,Loss,OtherM) {(Loss-(rootM/(rootM+OtherM)* (1-exp(-(rootM+OtherM)))*
2008 Jan 15
1
Viewing source code for .Internal functions
I am trying to view the source code of the function nlm in the stats package of R 2.4.1. I downloaded the source from CRAN and opened nlm.R, and it calls a .Internal function: .Internal(nlm(function(x) f(x, ...), p, hessian, typsize, fscale, msg, ndigit, gradtol, stepmax, steptol, iterlim)) This is the same thing I saw when entering the function name at the R command
2008 Aug 18
2
ifelse
I find it slightly surprising, that ifelse(TRUE, character(0), "") returns NA instead of character(0). [WNT 2.6.2 Patched] -- Heikki Kaskelma
2008 Aug 18
1
exonmap question: rma (or justplier) crashes
An embedded and charset-unspecified text was scrubbed... Name: ?????? ?? ????????. URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080818/dcaa0623/attachment.pl>
2000 Dec 07
0
Tuning the nlm function
Hi Everyone, Is there a simple way to force nlm to take larger initial steps? Setting print.level = 2 allows me to inspect the step size at each iteration, but I appear not to have made any appreciable impact on it by changing values of typsize, fscale, steptol or stepmax. The steps repeatedly come out tiny, 1e-9 typically, and the algorithm is terminating not because the gradient is zero (it
1999 Feb 08
0
Constrained minimisation
Hi Apart from nlm() with the stepmax= argument, is there any other >1 dimensional minimisation function where I can limit the step size dynamically. With the NAG routine E04NBF (I think) I used to bound the size of the next step using a*arctan(x/a) tricks where a function was particularly difficult near a boundary and thus 'steer' the result within legal limits. The function I am
2008 Nov 18
1
Re: Kernel Panic - Not syncing - Fatal Exception : list_del+0x18/0x5c
> A customer of ours is having randomly some kernel panics. Via some forum > posts I might have seen it could have something to do with Samba: > > They're running: RHEL 5.1 : Linux krulep03.verhaert.com 2.6.18-8.el5 #1 > SMP Fri Jan 26 14:15:21 EST 2007 i686 i686 i386 GNU/Linux > > rpm -qa | grep samba > samba-client-3.0.23c-2 > samba-3.0.23c-2 >
2003 Jan 06
1
On nlm
Dear all, I have to minimize a (real) function in a loop (say i in (1:1000)) and store its ``$estimate'', via l2estim<-nlm(f.minimo,c(-.01,0.1))$estimate into a vector for further analisys. Since the function's behaviour is quite peculiar (in the sense that in the simulation study it may not have a minumum), sometimes I get the the warning Error in nlm(minimo, c(-0.01, 0.1),
2007 Sep 16
1
Problem with nlm() function.
In the course of revising a paper I have had occasion to attempt to maximize a rather complicated log likelihood using the function nlm(). This is at the demand of a referee who claims that this will work better than my proposed use of a home- grown implementation of the Levenberg-Marquardt algorithm. I have run into serious hiccups in attempting to apply nlm(). If I provide gradient and
2003 Oct 17
2
nlm, hessian, and derivatives in obj function?
I've been working on a new package and I have a few questions regarding the behaviour of the nlm function. I've been (for better or worse) using the nlm function to fit a linear model without suppling the hessian or gradient attributes in the objective function. I'm curious as to why the nlm requires 31 iterations (for the linear model), and then it doesn't work when I try to add