matlab 在极坐标中画椭圆

2024-10-30 16:37:16
推荐回答(2个)
回答1:

试试这样:

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);

回答2:

因为这不是椭圆的极坐标方程,骚年!