R/print-plfd.R

#' @title Print Method for `plfd`
#' 
#' @param x `plfd` object.
#' @param ... Ignored currently.
#' 
#' @export
print.plfd <- function (x, ...) {
    message(sprintf('Dimension of Matrix-variate: %d x %d.', x$rDim, x$cDim))
    message(sprintf('Training data: n1=%d, n2=%d.', x$n1, x$n2))
    message(sprintf('Number of feature block(s): %d.', length(x$paras)))
}

Try the PLFD package in your browser

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

PLFD documentation built on June 8, 2025, 10:37 a.m.