极坐标下的三角函数

有周期性就有了对称性,而对称性可以得到一些周期性的东西。 画了一组三角函数在极坐标下的图形,没什么特别的,看看而已

theta=0:0.01:pi;
rho=sin(theta);
subplot(2,3,1);
polar(theta,rho,'r');
title('sin()','Color',[0 0 1],'FontSize',16);

rho=cos(theta);
subplot(2,3,2);
polar(theta,rho,'r');
title('cos()','Color',[0 0 1],'FontSize',16);

rho=-sin(theta);
subplot(2,3,3);
polar(theta,rho,'r');
title('-sin()','Color',[0 0 1],'FontSize',16);

rho=-cos(theta);
subplot(2,3,4);
polar(theta,rho,'r');
title('-cos()','Color',[0 0 1],'FontSize',16);

rho=sin(theta).*cos(theta);
subplot(2,3,5);
polar(theta,rho,'r');
title('sin()*cos()','Color',[0 0 1],'FontSize',16);

rho=sin(3*theta).*cos(5*theta);
subplot(2,3,6);
polar(theta,rho,'r');
title('sin(2x)*cos(5x)','Color',[0 0 1],'FontSize',16);

图形如下:

极坐标下的三角函数_第1张图片

你可能感兴趣的:(极坐标下的三角函数)