GENERATION OF SINUSOIDAL SEQUENCE


clc;
close all;
clear all;
n=0:7;
y=10*sin(n);
subplot(2,2,1);
stem(n,y,'fill','--');
xlabel('n');
ylabel('y(n)');
z=10*cos(n);
subplot(2,2,2);
stem(n,z,'fill','--');
xlabel('n');
ylabel('z(n)');
x=10*cos(n);
subplot(2,2,[3,4]);
stem(n,z,'fill','--');
xlabel('n');
ylabel('x(n)');
title('Sinusoidal Sequence');


Output:

No comments:

Post a Comment