R/testClass.R

Defines functions bob

#' @exportClass TestClass

setClass('TestClass', slots=c(a="numeric",b='matrix',c="numeric"))

#' @export
bob = function(a,b,c)
{
  new('TestClass',a=a,b=b,c=c)
}
ColeWunderlich/trSim documentation built on May 5, 2019, 12:28 p.m.