当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


MATLAB fill()用法及代码示例


对于绘制填充多边形,我们可以使用 fill() 函数。顶点与要填充的颜色一起记录。

用法

fill(x,y,)	// It creates filled polygons from the data specified by x and y with color c.
fill(x1,y1,c1....xN,yN,cN)	// It specifies multiple 2-D filled areas
fill(x,y,colorspec)	// It fills 2-D polygons specified by X and Y with the color specified by colorspec.

示例

r^2=2sin5t,0≤t≤2π
x=r cost,y=r sint
t=linspace (0, 2*pi,200);
r=sqrt(abs(2*sin(5*t)));
x=r.*cos(t);
y=r.*sin(t);
fill(x, y, 'k');
axis('square')

输出:

MATLAB fill()



相关用法


注:本文由纯净天空筛选整理自 MATLAB fill()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。