其他分享
首页 > 其他分享> > matlab polarplot 在极坐标中绘制螺线

matlab polarplot 在极坐标中绘制螺线

作者:互联网

matlab polarplot 在极坐标中绘制螺线

 

theta = linspace(0,1800,500);
rho = 0.005*theta/100;

theta_radians = deg2rad(theta);
polarplot(theta_radians,rho)

 

 

 

 

 

 

 

参考:https://ww2.mathworks.cn/help/matlab/ref/polarplot.html

 

 

###################################

标签:polarplot,radians,matlab,rho,theta,极坐标
来源: https://www.cnblogs.com/herd/p/15497170.html