试试这样:
clear all;clc;
a=4;b=2;
t=0:pi/100:2*pi;
x=a*cos(t);
y=b*sin(t);
[th,rh]=cart2pol(x,y);
polar(th,rh);
因为这不是椭圆的极坐标方程,骚年!