DC LAB ASS (1)
DC LAB ASS (1)
M
Date: 27/11/2024
Roll No: AM.EN.U4ECE22157
Lab Exercises:-
1. Use Mat lab to find and plot the orthogonal basis for the waveforms
of the Signal Set
2. Find the coordinates and plot these signals as points in signal space.
MATLAB CODE:
% KANIMOZHI HARSHINI.M
% AM.EN.U4ECE22157
subplot(2, 2, 4);
plot(t, s4);
xlabel('Time(s)');
ylabel("s4(t)");
title('Signal Set 4');
% Results
disp("Coefficient for s1:"); disp(S1);
disp("Coefficients for s2:"); disp(S2);
disp("Coefficients for s3:"); disp(S3);
disp("Coefficients for s4:"); disp(S4);
Output: