R/print_methods.R

Defines functions print.bpa print.bpamat

Documented in print.bpa print.bpamat

print.bpa <- function(x, verbose = FALSE, ...)
    {
        cat('A bpa object.', '\n')
        print(x$get.m())
        if(verbose == TRUE)
            {
                cat('The following functions are available:\n')
                print(names(x))
            }
    }

print.bpamat <- function(x, ...)
    {
        cat('A bpa mat object with information on',
            length(x$get.setlist()) - 1  , 'classes and',
            length(x$get.pointlist()) - 1, 'points', '\n')
        cat('The following functions are available:\n')
        print(names(x))        
    }

Try the MuViCP package in your browser

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

MuViCP documentation built on May 1, 2019, 7:56 p.m.