You are on page 1of 1

Objective:

To study & analysis the unit circle.

Apparatus:

Using MatLab software analysis the signals


Procedure:
Open the MatLab Software
Click on File menu.
Select Script ( Ctrl+N) option in file menu
Use grid, stem set, and subplot command
Program:
clc
clear all
clear all
r=('1');
pi=22/7;
theta=linspace(0,3*pi,100);
x=r*cos(theta);
y=r*sin(theta);
z=plot(x,y);
xlabel('x');
ylabel('y');
title('circle');

Diagram:

You might also like