R/summary.cddews.R

`summary.cddews` <-
function (object, ...)
{
    ctmp <- class(object)
    if (is.null(ctmp))
        stop("cddews has no class")
    else if (ctmp != "cddews")
        stop("cddews is not of class cddews")
    cat("Locally stationary two-dimensional wavelet decomposition structure\n")
    cat("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n")

    cat("Levels: ", object$nlevels, "\n")
    cat("dimension of original image was: ", object$datadim[1],
        "x", object$datadim[2], "pixels.\n")
    cat("Filter family used: ", object$family, "Filter index (N):", object$filter, "\n")
    cat("Structure adopted:", object$structure, "\n")
    cat("Date: ", object$date, "\n")
}

Try the LS2W package in your browser

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

LS2W documentation built on Nov. 2, 2022, 1:06 a.m.