可以使用spline命令来画图。
例子如下:
x = 0:10;y = sin(x);xx = 0:.25:10;yy = spline(x,y,xx);plot(x,y,'o',xx,yy)
这个命令不能有重复的坐标值,所以,封闭建议你用直线连起来就好。