當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。