brune.search(RSEIS)
brune.search()所属R语言包:RSEIS
Search for Brune fit to displacement spectrum
搜索布伦适合位移谱
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Model of the spectrum of a seismic arrival. Uses Brune's Model.
地震到达频谱模型。使用布伦模式。
用法----------Usage----------
brune.search(infreq, inspec, f1, f2, omega0, fcorn, tstar0, gamma)
参数----------Arguments----------
参数:infreq
vector of frequencies
向量的频率
参数:inspec
spectrum
光谱
参数:f1
low frequency, Hz
低频率,Hz
参数:f2
high frequency, Hz
高频率,Hz
参数:omega0
initial starting low frequency asymptote
初始启动低频渐近
参数:fcorn
initial starting corner frequency
最初的起始角频率
参数:tstar0
initial starting t*
最初开始T *
参数:gamma
initial starting gamma
最初开始伽马
Details
详细信息----------Details----------
see paper by Lees and Lindley
纸阅读和Lindley
值----------Value----------
list(omega0=omega0,tstar0=tstar3[3] , fc=fcorn, alpha=0, gamma=gam3[3])
列表(omega0 = omega0,tstar0 = tstar3 [3],fc的= fcorn,α= 0,γ= gam3 [3])
参数:omega0
low frequency asymptote
低频渐近
参数:fc
corner frequency
转角频率
参数:tstar0
t*
T *
参数:gamma
gamma
伽玛
参数:alpha
alpha parameter
α参数
参数:chisqrd
chi-squared misfit over region of fitting
卡方不称职以上区域的配件
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees.edu>
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
data(CE1)
#### set frequency range for modeling[###设定的频率范围内进行建模]
f1 = 0.01
f2 = 14.0
## set up data and parameters[#设置数据和参数]
amp = CE1$y
len2 = 2*next2(length(amp))
a = list(y=amp, dt=CE1$dt)
Spec =MTMdisp(a, f1=f1, f2=f2, len2=len2, PLOT=FALSE )
lspec = Spec$displ
### get initial estimate of parameters[##初步估计的参数]
xc = get.corner( Spec$f , lspec, dt, f1, f2, PLOT=FALSE)
jmod = brune.search(Spec$f, lspec, f1, f2, xc$omega0, xc$corn, xc$tstar0, 2.0)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|