Re: [Rd] class extension and documentation

2011-12-05 Thread Terry Therneau
Duncan's reply to my query > Now R CMD check claims that I need Rd pages for backsolve and > backsolve.default. I don't think I should rewrite those. > How do I sidestep this and/or > what other manuals should I read? Even though your change is subtle, I'd say it's still a change (back

Re: [Rd] class extension and documentation

2011-12-05 Thread Duncan Murdoch
On 05/12/2011 12:11 PM, Terry Therneau wrote: I've added a "backsolve" method to the bdsmatrix library. Per the Extending manual section 7.1 I've also added the following 3 lines along with my setMethod definitions for 2 classes. backsolve<- function(r, ...) UseMethod("backsolve") backsolve.defa

[Rd] class extension and documentation

2011-12-05 Thread Terry Therneau
I've added a "backsolve" method to the bdsmatrix library. Per the Extending manual section 7.1 I've also added the following 3 lines along with my setMethod definitions for 2 classes. backsolve <- function(r, ...) UseMethod("backsolve") backsolve.default <- base:::backsolve formals(backsolve.defau