This contains the all the projects of 7th semester.
Lab 1:- RPC
Lab 2:- Lamport's Logical Clock
Lab 3:- RMI
Lab 4:- Bully Algorithm
Lab 5:- Mutual Exclusion
Write a MATLAB program to generate the following elementary signals:
i) Unit Step Sequence
ii) Unit Step Signal
iii) Unit Ramp Signal
iv) Sine Signal
v) Cosine Signal
vi) Exponential Signal
Program to obtain linear convolution and circular convolution of two finite length sequence.
- x[n] = {1,0,-1,1,2,1}, h[n]={1,1,1,1,1}
- x[n] = e^(-an) u[n], h[n] = u[n] h=ones(1,10)
- x[n] = u[n], h[n] = 2^n h=power(2,n)
- x[n] = {1,3,2,1,1}, h[n]={1,2,-1,1}
linear convolution => y=conv(x,h) circular convolution => y=cconv(x,h,N)
N=max(l1,l2); Circular Convolution N=l1+l2-1; linear convolution using circular convolution
Fast Fourier Transform and Inverse Fourier Transform
IRR and FRR filters
- Design and implementation of FIR filter (LP/HP) to meet given specifications using Windowing techinque
The lab 2 contains ipynb of using keras for implementing ANN.