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
▼
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 find the Fourier transform of an exponential curve
›
Progam code clc; clear all ; close all ; t=0:0.001:1; a=input( 'Please enter the multiplication factor of an expone...
MATLAB program to find the Fourier Transform of cosine wave
›
Program code clc; clear all ; close all ; t=0:0.001:1; cwtstruct = cwtft((cos(2*3.14*1000*t)), 'plot' ); Output ...
2 comments:
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 find out the Fourier Transform of sinusoidal waveform
›
Program code clc; clear all; close all; t=0:0.001:1; cwtstruct = cwtft((sin(2*3.14*1000*t)),'plot'); Output _______...
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 ...
Matlab program to generate logarithmic curve
›
Program code clc; close all; clear all; a=input('Please enter the multiplication factor'); t=0:0.001:1; p=log(a*t); plo...
Matlab program for Trapezoidal waveform
›
Program Code clc; clear all; close all; t=0:.5:4; y=trapmf(t,[.5 1 2 2.5]); plot (t,y); axis ([0 4 -2 2]); xlabel ('Time'...
4 comments:
MATLAB program for Z-Transform of finite duration sequence
›
Program Code %ztransform of finite duration sequence clc; close all ; clear all ; syms 'z' ; disp( 'If you input a...
20 comments:
MATLAB program to plot zeros and poles of z-transform
›
Program Code %Plotting zeros and poles of z-transform clc; close all; clear all; disp('For plotting poles and zeros'); b=input(...
4 comments:
MATLAB Program for Rayliegh distribution
›
Program Code %Rayliegh Distribution clc; close all; clear all; x=input('Enter the input sequence '); s=input('Enter the stand...
MATLAB Program for Uniform distribution
›
Program Code %Uniform Distribution clc; close all; clear all; n=input('Input the end value of x = '); a=input('Input the star...
MATLAB Program for Random sequence generation
›
Program Code %Random Sequence Generation clc; close all; clear all; n=input('Input the length of Random sequence '); y=linspace(1...
MATLAB program for normal distribution
›
Program Code % Normal Distribution clc; close all; clear all; x=input('Enter the input sequence '); m=input('Enter the value ...
MATLAB program for sampling rate conversion
›
Program Code %sampling rate conversion clc; close all; clear all; N=input('Enter the length of the sequence N= '); n=0:N-1; f1=in...
MATLAB program for equiripple FIR filter
›
Program Code %equiripple FIR filter clc; close all; clear all; Fs=1000; Fp=input('Input the pass band frequency Fp= '); Fst=input...
‹
›
Home
View web version