tcwbest 发表于 2009-3-6 22:03

想了很久 也不知道怎么在MATLAB中把椭圆画出

比如说一个 二维的吧。
X^2/4 + Y^2/6 = 1

这个椭圆怎么才能在MATLAB中画出来呢??

谢谢指教!

sogooda 发表于 2009-3-6 22:37

用参数方程把这个方程表示出来,然后绘图就比较容易了。

tcwbest 发表于 2009-3-6 22:49

回复 沙发 sogooda 的帖子

什么是 参数方程 啊?? 指教下

ChaChing 发表于 2009-3-6 23:23

ezplot('x^2/4+y^2/6-1');axis equal;grid on

tcwbest 发表于 2009-3-7 00:02

回复 地板 ChaChing 的帖子

非常感谢 非常感谢

friendchj 发表于 2009-3-7 00:06

回复 板凳 tcwbest 的帖子

试一下:
t=0:0.1:2*pi;
x=2*sin(t);
y=sqrt(6)*cos(t);
plot(x,y)
页: [1]
查看完整版本: 想了很久 也不知道怎么在MATLAB中把椭圆画出