Learn R Programming

wavethresh (version 4.7.3)

print.wd3D: Print out information about an wd3D object in a readable form.

Description

This function prints out information about an wd3D.object in a readable form.

Note that this function is automatically called by SPlus whenever the name of an wd3D.object is typed or whenever such an object is returned to the top level of the S interpreter

Usage

# S3 method for wd3D
print(x, ...)

Value

The last thing this function does is call summary.wd3D so the return value is whatever is returned by this function.

Arguments

x

An object of class wd3D that you wish to print out.

...

This argument actually does nothing in this function!

RELEASE

Version 3.9.6 Copyright Guy Nason 1997

Author

G P Nason

Details

Prints out information about wd3D objects in nice readable format.

See Also

accessD.wd3D, print.wd3D, putD.wd3D, putDwd3Dcheck, summary.wd3D, threshold.wd3D, wd3D, wd3D.object, wr3D.

Examples

Run this code
#
# Generate an wd3D object.
#
tmp <- wd3D(array(rnorm(512), dim=c(8,8,8)))
#
# Now get R to use print.wd
#
tmp
#Class 'wd3d' : 3D DWT Object:
#       ~~~~  : List with 5 components with names
#              a filter.number family date nlevelsWT 
#
#$ a is the wavelet coefficient array
#Dimension of a is [1] 8 8 8
#
#Created on : Wed Oct 20 17:24:15 BST 1999 
#
#summary(.):
#----------
#Levels:  3 
#Filter number was:  10 
#Filter family was:  DaubLeAsymm 
#Date:  Wed Oct 20 17:24:15 BST 1999 

Run the code above in your browser using DataLab