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

📄 polyplot.m

📁 Oversampling Delta-Sigma Data Converters
💻 M
字号:
function h = polyplot(p,fmt)%function polyplot(p,fmt)%Plot a polygon given by the point list p, with format fmtif nargin < 2     fmt = '-';endn = size(p,2);if p(:,n) == p(:,1)    h = plot( p(1,:), p(2,:), fmt );else    h = plot( [p(1,:) p(1,1)], [p(2,:) p(2,1)], fmt );end

⌨️ 快捷键说明

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