0% found this document useful (0 votes)
16 views3 pages

SS Lab Experiments

Uploaded by

lakshmireddyptr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views3 pages

SS Lab Experiments

Uploaded by

lakshmireddyptr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

1 Basic Operations on Matrices.

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)

Disp(‘the input signal of x2(t) is ‘);


X2=cos(w*t);
X2=laplace(x2);
Disp(‘Laplace transform of x2(t) is’);

Disp(‘the input signal of x3(t) is ‘);


x3=exp(-5*t);
X3=laplace(x3)
Disp(‘Laplace transform of x3(t) is’);

Disp(‘inverse laplace transform of X1(S) is ‘)


x1=ilaplace(X1);
x1=simplify(X1)
`
Disp(‘inverse laplace transform of X2(S) is ‘)
X2=ilaplace(X2);
X2=simplify(X2)

Disp(‘inverse laplace transform of X3(S) is ‘)


X3=ilaplace(X3);
X3=simplify(X3)

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)

Disp(‘the sequence x2(n) is’)


X2=cos(w0*n)
X2=ztrans(x2);
Disp(‘the Z-Transform of x2(n) is’);
X2=simplify(X2)

Disp(‘the sequence x3(n) is’)


X3=n+1
X3=ztrans(x3);
Disp(‘the Z-Transform of x3(n) is’);
X3=simplify(X3)

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)

You might also like