log.m

来自「基于Matlab的地震数据处理显示和测井数据显示于处理的小程序」· M 代码 · 共 11 行

M
11
字号
function ds=log(ds)% Function takes the natural logarithm of the traces of a seismic dataset% Written by: E. R.: November 23, 2005% Last updated:if isstruct(ds)  &  strcmp(ds.type,'seismic')   ds.traces=log(ds.traces);else   error('Operator "log" is not defined for this argument.')end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?