abs.m
来自「实现地震勘探中」· M 代码 · 共 14 行
M
14 行
function ds=abs(ds)% Function takes the absolute value of the traces of a seismic dataset%% Written by: E. R.: August 18, 2005% Last updated: September 18, 2006: Handle structure arraysif isstruct(ds) && strcmp(ds(1).type,'seismic') for ii=1:numel(ds) ds(ii).traces=abs(ds(ii).traces); endelse error('Function "abs" is not defined for this argument.')end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?