R/sim.default.R

Defines functions sim.default

Documented in sim.default

sim.default <-
function(object)
{
   if (missing(object))
   {
      stop("Missing basin object!")
   }
   result<-list()
   operation<-sim.base(object)
   result$operation<-operation
   result$call<-match.call()
   class(result)<-"sim"
   return(result)
}

Try the WRSS package in your browser

Any scripts or data that you put into this service are public.

WRSS documentation built on May 30, 2022, 1:07 a.m.