Franck:
I suspect you'll have to include the exact wording of the relevant
setGeneric and setMethod calls (as well as any other functions called
in your method) to get an answer to your question. I just did:
> setGeneric("start", function(x, ...) standardGeneric("start"))
[1] "start"
> set
Hello !
there's a S3 method called start (and end too) to be used with objects of
class ts (package stats). I am writing a S4 class for which I would like to
use this function start, so that start with a ts calls the former method and
start with my S4 class (called MA) calls the function I want.
Fo