electronics and communication (B. Tech/ B. E)
Programs for digital signal processing. written using MATLAB
Pages
(Move to ...)
Home
Syllabus of 'Digital Signal Processing Lab' in the KTU B.Tech ECE 5th semester can be seen by clicking here.
34 matlab programs here! Please click here to see all the matlab programs present in this blog
About this weblog
▼
Showing posts with label
ktu
.
Show all posts
Showing posts with label
ktu
.
Show all posts
MATLAB program for the design and implementation of Chebyshev low pass filter
›
Program code %Chebyshev low pass filter clc; clear all ; close all ; fp=input( 'Please enter the pass band frequency: '...
MATLAB program for the design and implementation of Chebyshev high pass filter
›
Program code %Chebyshev high pass filter clc; clear all ; close all ; fp=input( 'Please enter the pass band frequency: ...
MATLAB program for the design and implementation of Chebyshev band pass filter
›
Program code %Chebyshev band pass filter clc; clear all ; close all ; fp1=input ( 'Please input the first pass band frequen...
MATLAB program for the design and implementation of Butterworth band pass filter
›
Program code clc; clear all ; close all ; fp1=input ( 'Please input the first pass band frequency = ' ); fs1=input ( ...
MATLAB program to perform linear convolution using circular convolution
›
Program code %linear convolution using circular convolution clc; clear all ; close all ; x=input( 'Please enter the first s...
MATLAB program for the design and implementation of Butterworth high pass filter
›
Program code clc; clear all; close all; fp=input('Please enter the first pass band frequency: '); fs=input('Please enter ...
MATLAB program for the design and implementation of Butterworth low pass filter
›
Program code clc; clear all; close all; fp=input('Please enter the first pass band frequency: '); fs=input('Please enter ...
1 comment:
MATLAB program to perform circular convolution of two signals
›
Program Code %circular convolution clc; close all ; clear all ; x=input( 'Please enter the first sequence x[n] = ' ); ...
MATLAB program to perform linear convolution of two signals ( without using MATLAB function)
›
Program Code clc; close all; clear all; xt=input('Please enter the input sequence in time domain x[n]= '); lxt=leng...
4 comments:
Matlab program to find the linear convolution of two signals (using matlab functions)
›
Program Code %linear convolution (using matlab functions) clc; close all; clear all; x1=input('Please enter the input sequence ...
›
Home
View web version