SS Lab Experiments
SS Lab Experiments
2 Write a program for Generation of Various Signals and Sequences (Periodic and Aperiodic),
such as Unit impulse, unit step, square, saw tooth, triangular, sinusoidal, ramp, sinc.
3 Write a program to perform operations like addition, multiplication, scaling, shifting, and
folding on signals and sequences and computation of energy and average power.
4 Write a program find the output with linear convolution operation Using MATLAB
Software.
5 Write a program for finding the even and odd parts of the signal / sequence and real and
imaginary parts of the signal.
6 Write a program to perform autocorrelation and cross correlation between signals and
sequences.
7 Write a program for verification of linearity and time invariance properties of a given
continuous/discrete system
8 Write a program for computation of unit samples, unit step and sinusoidal response of the
given LTI system and verifying its physical realizability and stability properties.
9 Write a program to find the Fourier transform of a given signal and plotting its magnitude
and Phase spectrum.
10 Write a program to Verification of Sampling Theorem.
11 Write a program to find the Laplace Transform & Inverse Laplace Transform of Some
Signals.
12 Write a program to find the Z - Transform & Inverse Z Transform of Some Signals.
Write a program to find the Laplace Transform & Inverse Laplace Transform of Some Signals.
Clc;
Clear all;
Close all;
Syms t a w
Syms s complex
Disp(‘the input signal of x1(t) is ‘);
x1=t*exp(-a*t);
Disp(‘Laplace transform of x1(t) is’);
X1=laplace(x1)
Write a program to find the Z - Transform & Inverse Z Transform of Some Signals.
Clc;
Clear all;
Close all;
Disp(‘the sequence x1(n) is’)
x1=sin(w0*n)
X1=ztrans(x1);
Disp(‘the Z-Transform of x1(n) is’);
X1=simplify(X1)
x1=iztrans(X1)
disp(‘the inverse Z-transform is’)
disp(x1)
x2=iztrans(X2)
disp(‘the inverse Z-transform is’)
disp(x2)
x3=iztrans(X3)
disp(‘the inverse Z-transform is’)
disp(x3)