⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mystairs.m

📁 基于Matlab的地震数据处理显示和测井数据显示于处理的小程序
💻 M
字号:
function handle=mystairs(x,y,style)% Plots stair step graph; like "stairs, but with an "upstroke"%% Written by: E. R.: October 7, 2003% Last updated: February 21, 2006: Handle Matlab 7%%           handle=mystairs(x,y,style)% INPUT% x         edges of stairs % y         level of stairs (the number of edges exceeds by 1 the number of%           levels of the stairs; i.e. length(x)=length(y)+1 )% style     optional plot linestyle% OUTPUT% handle(s) to stairstep graphsglobal S4Mxx=[x(1);x(:)];yy=[0;y(:);0];if S4M.matlab_version < 7   if nargin == 2      handle=stairs(xx,yy);   else      handle=stairs(xx,yy,style);   endelse   if nargin == 2      handle=stairs('v6',xx,yy);   else      handle=stairs('v6',xx,yy,style);   endend

⌨️ 快捷键说明

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