l_tools.m

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

M
26
字号
function l_tools(keyword)% Without argument, function lists all functions that process log data.% The argument allows restrictions to those functions which have the keyword % as part of the description.%% Written by: E. R.: May, 6, 2000% Last updated: April 28, 2006: Use new function "displayTools"%%           l_tools(keyword)   or   l_tools keyword% INPUT% keyword   Search string to restrict the output of this command to lines that contain%           this string (needs to be in quotes if used as argument)%% EXAMPLES     %           l_tools             % shows all log-related functions%           l_tools plot        % shows log-related functions referring to plots%           l_tools('plot')     % same as abovelist=list_of_log_functions;if nargin == 0   keyword=[];enddisplayTools(keyword,list,'  No matching tools for well logs found.')

⌨️ 快捷键说明

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