📄 s_roots2wavelet.m
字号:
function wavelet=s_roots2wavelet(zroots,first,step,maxamp)
% Compute wavelet from the zeros of its z-transform
% Written by: E. R.: June 13, 2004
% Last updated:
%
% wavelet=s_roots2wavelet(zroots,first,step)
% INPUT
% zroots roots of the z-transform
% first time of first sample
% step sample interval
% maxamp maximum amplitude of resulting wavelet
% OUTPUT
% wavelet one-trace seismic structure
temp=real(poly(zroots));
temp=temp*(maxamp/max(temp));
wavelet=s_convert(flipud(temp(:)),first,step);
wavelet.tag='wavelet';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -