search for: stepdenominator

Displaying 3 results from an estimated 3 matches for "stepdenominator".

2010 Jan 13
1
Rd output garbled in some circumstances
...In particular, R 2.7 is in the latest stable release of Debian, so I'd like to solve the problem for 2.7. The .Rd file is for a function and has an arguments section like this \arguments{ \item{formula}{ A formula giving the vectors containing ## skipped covariates. } ## skipped \item{stepdenominator}{See \code{stepnumerator} just above.} \item{do.what}{\describe{ \item{1}{By default, calculates a maximimum likelihood. To evaluate a single likelihood, set all parameters to fixed. } \item{0}{Count number of paths and related statistics without evaluating the likelihood....
2004 Nov 05
0
R check passes code and docs that don't match
...ly, but unknown transient state at previous instant tunit = 1.0, # no longer used exacttimes = FALSE, fixedpars = NULL, # specify which parameters to fix stepnumerator = 1, # maximum step size in discrete approximation stepdenominator = 1, # rational number; use integers do.what = 1, # 1 for likelihood, 0 for counts ... # options to optim ) in mspath.Rd \usage{ mspath ( formula, qmatrix, misc = FALSE, ematrix, inits, subject, covariates = NULL, constraint = NULL, misccovari...
2007 Feb 25
3
R/C++/memory leaks
Dear all, I have wrapped a C++ function in an R package. I allocate/deallocate memory using C++ 'new' and 'delete'. In order to allow user interrupts without memory leaks I've moved all the delete statements required after an interrupt to a separate C++ function freeMemory(), which is called using on.exit() just before the .C() call. I am concerned about the