容易,这里给你举个例子:做椭圆方程: x=4sint y=bcostmatlab程序如下: t=[-20:0.1:20]; y=3*cos(t); x=4*sin(t); plot(x,y)
figure;ezplot('x^2/9+y^2/4=1')axis equal
你指的是 y=asinc x=bcosc 这样的参数方程吗? c=-pi:0.1:pi ; plot(b*cos(c),a*sin(c))