R/print.heat.R

Defines functions print.heat

#' @export

print.heat <- function(x) {
  cat("Final Results:\n", head(x$final.results, n = if (x$dim == 1L) {6L} else {1L}), "   ... \n", 
      tail(x$final.results, n = if (x$dim == 1L) {6L} else {1L}))
}
TWilliamBell/heateq documentation built on Aug. 10, 2019, 3:32 p.m.