Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Name:Vishal Shivaji Garad

Roll.No:B-75

Reg.No:2018Bec524

Aim:

% 1 st function
theta = linspace(0,360,50);
rho = 0.005*theta/10;

theta_radians = deg2rad(theta);
subplot(1,2,1)
polarplot(theta_radians,rho,'r')

% 2 st function
theta = linspace(0,2*pi);
rho = sin(theta);
subplot(1,2,2)
polarplot(theta,rho,'g')

output

You might also like