Displaying 1 result from an estimated 1 matches for "dimsteps".
2010 Apr 25
0
S4 generic and method arguments -- "expanded signature"
...the arguments
specified in the generic.
So, I create the generic like so (with the signature defaulting to all
of the args) ...
setGeneric(
name="myFunction",
def = function(filename,
dimLengths,
dimSteps,
dimStarts,
likeTemplate,
likeFile) {
standardGeneric("myFunction") }
)
In my first method, for example, I only need access to the first 4
args, so I try ...
setMethod(...