给出椭圆参数方程怎么用matlab画图

很急..不知道的不要乱贴答案啊...谢谢
2025-06-25 17:26:04
推荐回答(3个)
回答1:

容易,这里给你举个例子:
做椭圆方程: x=4sint y=bcost
matlab程序如下:
t=[-20:0.1:20];
y=3*cos(t);
x=4*sin(t);
plot(x,y)

回答2:

figure;
ezplot('x^2/9+y^2/4=1')
axis equal

回答3:

你指的是 y=asinc x=bcosc 这样的参数方程吗?
c=-pi:0.1:pi ; plot(b*cos(c),a*sin(c))