📄 sign.m
字号:
function ds=sign(ds)% Function takes the sign of the traces of a seismic dataset%% Written by: E. R.: September 11, 2005% Last updated: September 18, 2006: Handle structure arraysif isstruct(ds) && strcmp(ds(1).type,'seismic') for ii=1:numel(ds) ds(ii).traces=sign(ds(ii).traces); endelse error('Operator "sign" is not defined for this argument.')end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -