matlab中通常可用两种方法画椭圆的曲线:
使用隐函数绘图函数ezplot()
使用椭圆的参数方程得到散点,然后plot()函数作图
下面实例演示绘制椭圆:(x-1)^2/4
+
(y-3)^2/25
=
1
1、隐函数绘图函数ezplot()
ezplot('(x-1)^2/4
+
(y-3)^2/25
=
1',[-1
3
-2
8])
2、参数方程作图
>>
t
=
0:0.05*pi:2*pi;
>>
x
=
2*cos(t)+1;
>>
y
=
5*sin(t)+3;
>>
plot(x,y,'b')