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