R/setup.R

Defines functions .onUnload .onAttach

.onAttach <- function(libname, pkgname) {

  msg <- "\nWelcome to the deBif package for analysis of ordinary differential equations\nExecute the deBifHelp() function for instructions\nUse deBifReset() to reload the package in case of computational problems\n"

  options(stringsAsFactors=FALSE)
  packageStartupMessage(msg)
}

.onUnload <- function(libpath) {
  library.dynam.unload("deBif", libpath)
}

Try the deBif package in your browser

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

deBif documentation built on April 3, 2025, 9:25 p.m.