如何使用rho和theta在.fig图像上用matlab绘制线条

时间:2018-02-07 08:40:12

标签: matlab

我想在' .fig'上绘制带有theta和rho数据的线条。格式图像。 图像是由此代码生成的椭圆。 :

xRadius = 3 + (10-3).*rand(1,1);% horizontal radius
yRadius = 3 + (10-3).*rand(1,1);% vertical radius
x0=0;
y0=0;
t=-pi:0.01:pi;
x=x0+xRadius*cos(t);
y=y0+yRadius*sin(t);

img = plot(x,y,'LineWidth',1);

我想要的输出是如果我在函数中输入rho和theta数据,它的输出是椭圆图像上的线。它的形状必须像径向形状,但不必穿过椭圆的中心。我该怎么办?

Output that I want

0 个答案:

没有答案