⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sconstruct

📁 国外免费地震资料处理软件包
💻
字号:
from rsfproj import *def plot(title):    return 'grey crowd=.85  wantaxis=0 title="%s" ' % titleFlow('make',None,'make  n1=75 n2=25 t1=2')Plot('make',plot('GEE'))Plot('make2','make',plot('Spitz'))Plot('plane','make',plot('signal+noise'))Flow('noiz','make',     'noise rep=y type=n seed=1993 range=0.145 | smooth rect1=3')Flow('data','make noiz','add ${SOURCES[1]}')Plot('noiz','data',plot('signal+noise'))    Flow('npef nlag','data','pef a=4,1 lag=${TARGETS[1]}')Flow('spef slag','data','pef a=7,3 lag=${TARGETS[1]}')def signoi(eps):    return 'signoi epsilon=%g sfilt=${SOURCES[1]} nfilt=${SOURCES[2]}' % epsdef splot(f3):    return 'window n3=1 f3=%d |' % f3 + plot('est. signal')def nplot(f3):    return 'window n3=1 f3=%d |' % f3 + plot('est. noise')Flow('sign','data spef npef',signoi(1))Plot('ss','sign',splot(0))Plot('nn','sign',nplot(1))Result('signoi90','make noiz ss nn','SideBySideAniso',vppen='txscale=3')Flow('npef2 nlag2','npef','hconv other=$SOURCE lag=${TARGETS[1]}')Flow('sign2','data spef npef2',signoi(1))Plot('ss2','sign2',splot(0))Plot('nn2','sign2',nplot(1))Result('signoi','make2 noiz ss2 nn2','SideBySideAniso',vppen='txscale=3')Flow('plane1',None,'make second=n n1=75 n2=25 t1=2')Plot('plane1',plot('GEE'))Plot('plane2','plane1',plot('Spitz'))Flow('nppef nplag','make','pef a=2,2 lag=${TARGETS[1]}')Flow('sppef splag','make','pef a=5,3 lag=${TARGETS[1]}')Flow('psign','make sppef nppef',signoi(4))Plot('pss','psign',splot(1))Plot('pnn','psign',nplot(0))Result('planes90','plane1 plane pss pnn','SideBySideAniso',vppen='txscale=3')Flow('nppef2 nplag2','nppef','hconv other=$SOURCE lag=${TARGETS[1]}')Flow('psign2','make sppef nppef2',signoi(4))Plot('pss2','psign2',splot(1))Plot('pnn2','psign2',nplot(0))Result('planes','plane2 plane pss2 pnn2','SideBySideAniso',vppen='txscale=3')End()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -