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

📄 nocontours.m

📁 JLAB is a set of Matlab functions I have written or co-written over the past fifteen years for the p
💻 M
字号:
function[h]=nocontours(h)%NOCONTOURS  Removes contours from a CONTOURF plot.%%   NOCONTOURS(H) where H is an array of handles to lines, output by%   CONTOURF, sets the linestyle for all the lines to 'none'.  This%   removes the contours from the CONTOURF plot.%%   NOCONTOURS with no input arguments sets the linestyle of patch%   objects in the current axes to 'none'.%%   H=NOCONTOURS also returns the handles to the patch objects.  %   _________________________________________________________________%   This is part of JLAB --- type 'help jlab' for more information%   (C) 2004 J.M. Lilly --- type 'help jlab_license' for details          if nargin==0  h=patchhandles(gca);endset(h,'linestyle','none')  if nargout ==0  clear hend

⌨️ 快捷键说明

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