get.corner(RSEIS)
get.corner()所属R语言包:RSEIS
Get Corner Frequency: Linear Model
角频率:线性模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Search for low frequency asymptote, corner frequency, and fall off slope of seismic spectrum.
搜索低频渐近线,角频率,地震波的频谱倾斜和脱落。
用法----------Usage----------
get.corner(INfreq, INspec, dt, f1, f2, PLOT = FALSE, VERBOSE = FALSE)
参数----------Arguments----------
参数:INfreq
frequency vector
矢量变频
参数:INspec
spectrum
光谱
参数:dt
deltaT
DeltaT的
参数:f1
low frequency for modeling, Hz
为模型,赫兹的低频率
参数:f2
High frequency for modeling, Hz
造型,赫兹的高频率
参数:PLOT
logical, TRUE=plot
逻辑,TRUE =图
参数:VERBOSE
TRUE=diagnostics
TRUE =诊断
Details
详细信息----------Details----------
This routine does not assume any particular mathematical model. It searches for a three parameters that describe two lines that mimic the displacement spectrum. The search is done via least squares.
此例程不承担任何特定的数学模型。它搜索的三个参数来描述两行,模拟位移谱。搜索是通过最小二乘法。
值----------Value----------
Model of 3 parameters, best fit.
3个参数,最适合的模型。
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees.edu>
参见----------See Also----------
brune.doom
brune.doom
实例----------Examples----------
data(CE1)
#### set frequency range for modeling - for this high frequency data[###设定的频率范围内该高频数据建模 - ]
#### we use f2 = 50, but for volcano data should be f2<15[###我们使用F2 = 50,但火山的数据应该是F2 <15]
f1 = 0.01
f2 = 50.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, CE1$dt, f1, f2, PLOT=FALSE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|