Skip to content
Prev 7717 / 15075 Next

odd problem building gmp from source, addendum

It occurs to me I should post the mods I made to the source matrixz.R, 
just in case I managed to do something really bad :-(.

Here is my code snippet:
apply <- function(X, MARGIN,FUN,...)
   UseMethod("apply")

apply.default <- function(X, MARGIN,FUN,...)
   base::apply(X, MARGIN,FUN,...)


apply.bigz <- function(X, MARGIN,FUN)

That differs from the original source only in the addition of the '...' 
argument to apply and apply.default.

Carl
On 1/11/11 9:01 PM, Simon Urbanek wrote: