方法一:使用隐函数的方法来绘制. ezplot(‘x^2+y^2-4’) 方法二:转换成参数函数来绘制图形. x=2*sint; y=2*cost; 程序如下: t=0:pi/100:2*pi; x=2*sin(t); y=2*cos(t); plot(x,y)