imag.m

来自「实现地震勘探中」· M 代码 · 共 14 行

M
14
字号
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 + =
减小字号Ctrl + -
显示快捷键?