GENERATION OF SINE FUNCTION

clc;
close all;
clear all;
t=0:.001:2*pi;
y=10*sin(t);
subplot(2,2,1);
plot(t,y);
xlabel('t');
ylabel('y(t)');
z=10*cos(t);
subplot(2,2,2);
plot(t,z);
xlabel('t');
ylabel('z(t)');
x=10*cos(2*t);
subplot(2,2,[3,4]);
plot(t,x);
xlabel('t');
ylabel('x(t)');
title('Sinusoidal Wave');

Output:


No comments:

Post a Comment