R/BoundInFluxes.R

BoundInFlux.new=function
(t_start, 
 t_end,   
 f        
 ){
   warning("The function is deprecated, constructors are now called as the class. To get rid of this warning please use BoundInFluxes() in the future.")
   obj=BoundInFluxes(f,t_start,t_end) 
return(obj)
}






#' constructor for BoundInFluxes
#' 
#' The method internally calls \code{\link{TimeMap}} and expects the same kind
#' of arguments
#' 
#' 
#' @param ... passed on to \code{\link{TimeMap}}
BoundInFluxes <- function 
  (
   ... 
  )
      {
      return(as(TimeMap(...),'BoundInFluxes'))
}

Try the SoilR package in your browser

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

SoilR documentation built on Oct. 13, 2023, 5:06 p.m.