Print out information about an wd object in readable form.
WD对象可读的形式打印出来的信息。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function prints out information about an wd.object in a nice human-readable form.
这个函数打印出信息的wd.object在一个不错的人可读的形式。
Note that this function is automatically called by SPlus whenever the name of an wd.object is typed or whenever such an object is returned to the top level of the S interpreter
请注意,这个功能是自动调用S-PLUS时的名称wd.object键入或当这样的对象,则返回到顶级的S解释
用法----------Usage----------
## S3 method for class 'wd':
print(x, ...)
参数----------Arguments----------
参数:x
An object of class wd that you wish to print out.
的对象类wd您要打印出的。
参数:...
This argument actually does nothing in this function!
这个论点其实在这个函数中什么都不做!
Details
详细信息----------Details----------
Prints out information about wd objects in nice readable format.
打印信息wd对象在漂亮的可读的格式。
值----------Value----------
RELEASE----------RELEASE----------
Version 3.0 Copyright Guy Nason 1994
3.0版版权盖利晨1994年
(作者)----------Author(s)----------
G P Nason
参见----------See Also----------
wd.object, summary.wd.
wd.object,summary.wd。
实例----------Examples----------
#[]
# Generate an wd object.[产生一个WD物体。]
#[]
tmp <- wd(rnorm(32))
#[]
# Now get R to use print.wd[现在的R使用print.wd]
#[]
tmp
# Class 'wd' : Discrete Wavelet Transform Object:[“WD类:离散小波变换对象:]
# ~~ : List with 8 components with names[~~:8组件名称列表]
# C D nlevels fl.dbase filter type bc date [C D NLEVELS fl.dbase过滤器类型BC日期]
#[]
# $ C and $ D are LONG coefficient vectors ![$ C $ D LONG系数向量!]
#[]
# Created on : Fri Oct 23 19:56:00 1998 [创建于:2011年10月23日星期五19:56:00 1998年]
# Type of decomposition: wavelet [分解类型:小波]
# []
# summary(.):[概要(。):]
# ----------[----------]
# Levels: 5 [级别:5]
# Length of original: 32 [原来的长度:32]
# Filter was: Daub cmpct on least asymm N=10 [过滤器是:涂抹上至少cmpct非对称N = 10]
# Boundary handling: periodic [边界处理:定期]
# Transform type: wavelet [变换类型:小波]
# Date: Fri Oct 23 19:56:00 1998 [日期:2011年10月23日星期五19:56:00 1998年]
#[]
#[]