matlab 绘制由下列极坐标方程表示的曲线 r=aθ

问题描述:

matlab 绘制由下列极坐标方程表示的曲线 r=aθ

试试看:

clear all;clc;

theta=0:pi/20:8*pi;

a=2;

r=a*theta;

polar(theta,r);