s_wavelet2roots.m
来自「地震、测井方面matlab代码,解释的比较详细」· M 代码 · 共 15 行
M
15 行
function zroots=s_wavelet2roots(wavelet)
% Compute the zeros of the z-transform of a wavelet; for a minimum-phase
% wavelet the absolute value of the roots must be > 1.
% Written by: E. R.: June 13, 2004
% Last updated:
%
% zroots=s_wavelet2roots(wavelet)
% INPUT
% wavelet one-trace seismic structure
% OUTPUT
% zroots roots of the z-transform
zroots=roots(flipud(wavelet.traces));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?