PLOT.MATN(RSEIS)
PLOT.MATN()所属R语言包:RSEIS
plot a matrix of several seismograms
绘制一个矩阵的几个地震记录
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Matrix of several seismograms
矩阵的几个地震
用法----------Usage----------
PLOT.MATN(ascd, tim=1, dt=1, WIN=c(0,1), labs="", notes=notes, sfact=1,ampboost=0, shift=NULL, LOG="", COL='red', add=1, AXES=1, units=NULL, VS=FALSE)
参数----------Arguments----------
参数:ascd
N by K matrix of seismograms where
N的K矩阵的地震哪里
参数:tim
time values fo x-axis
时间值FO x轴
参数:dt
sample interval, seconds
采样间隔,秒
参数:WIN
vector, time window for zoom
矢量,时间窗口缩放
参数:labs
vector of labels for each panel
向量的每个面板的标签
参数:notes
vector of notes for each panel
每个面板的音符向量
参数:sfact
scaling factor, 1=window, 2=trace
缩放因子,1 =窗口,2 =痕量
参数:ampboost
increase each amplitude by this multiplier
这个乘数每增加幅度
参数:shift
vector, shift each trace by these time
矢量,却将每个跟踪这些时间
参数:LOG
log x-axis
登录x轴
参数:COL
vector of colors or indexes to colors
矢量的颜色或索引颜色
参数:add
numeric, to existing plot. add = 1,2,3 if add=1 plot and add traces, add =2 plot, but no traces, add = 3 no plot, but add traces. DEFAULT=1
数字,现有的图。 = 1,2,3,如果= 1图,添加的痕迹,增加= 2图,但没有痕迹,添加= 3没有图,但添加的痕迹。默认值= 1
参数:AXES
numeric, 0,1,2,3,4; default=1
数字0,1,2,3,4;默认值= 1
参数:units
label for units of Y-axis
Y-轴的单位的标签
参数:VS
var-squiggle display
VAR-波浪线显示
Details
详细信息----------Details----------
Plots a matrix of seismograms that each have the same starting time. For the AXES argument, 0 = no axes, AXES=1 plot scale for largest amplitude band and a multiplier for all others, AXES=2 left side, AXES=3 right side, AXES=4 alternate sides
绘制一个矩阵的每一个均具有相同的起始时间的地震记录。 0 =无轴,轴的轴的参数,= 1图规模最大振幅带和所有其他的乘数,轴= 2左侧,轴=右侧轴= 4两侧交替
值----------Value----------
Graphical side effects and,
图形化的副作用,并
参数:n
n
Ň
参数: windiv
matrix of n rows, with columns=(window Y min, window Y max, user Y min, user Y max)
矩阵的n行,列=(Y最小窗口,窗口Y最大,用户Y最小,最大用户Y)
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees@unc.edu>
参见----------See Also----------
swig
痛饮
实例----------Examples----------
dt = 0.001
t = seq(0, 6, by=0.001)
thefreqs = seq(from=10, to=100, by=10)
theamps = runif(length(thefreqs))
# % sample rate = 1000 Hz, 0.001 seconds 601 samples[%采样率= 1000赫兹,0.001秒601的样本]
x = NULL
for(i in 1:length(thefreqs))
{
x = cbind(x, theamps[i]*sin(2*pi*thefreqs[i]*t))
}
PLOT.MATN(x, dt = dt)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|