Scigyan
The way of knowledge.
Contact Us
About Us
You're welcome to
Scigyan
.
Home
Matlab »
Matlab Introduction
Simulink
Matlab Programming »
Basic Matlab Programs
Modulation Techniques
Programs for DSP
Showing posts with label
Matlab Programs for DSP
.
Show all posts
Showing posts with label
Matlab Programs for DSP
.
Show all posts
Design filter by Rectangular window function
Posted by
Unknown
at
22:18
Matlab program to design filter by Rectangular window function.
Matlab code
clc; close
all
; clear
all
;
Wc=.5*pi;
taps=25;
% No of taps
N=taps-1;
% Filter order
Read more »
Analog-to-Digital filter conversion
Posted by
Unknown
at
00:27
Matlab program for Analog-to-Digital filter conversion. This program convert Analog Domain signal to Digital domain.
Matlab code
% Let Transfer function in Analog Domain is (s^2+2s+1)/(s^3+5s^2+11s+15)
clc; close
all
; clear
all
; b=[1,2,1];
a=[1,5,11,15];
fs=5;
%Sampling frequency
Read more »
Chebyshev Type 2 Digital Band Stop Filter
Posted by
Unknown
at
00:24
Matlab program to design Chebyshev Type 2 Digital Band Stop Filter.
Matlab code
clc; clear
all
; close
all
;
rp=input(
'Enter the Passband ripple (In db) = '
);
rs=input(
'Enter the Stopband attenuation (In db) = '
);
Read more »
Chebyshev Type 2 Digital Band Pass Filter
Posted by
Unknown
at
00:24
Matlab program to design Chebyshev Type 2 Digital Band Pass Filter.
Matlab code
clc; clear
all
; close
all
;
rp=input(
'Enter the Passband ripple (In db) = '
);
rs=input(
'Enter the Stopband attenuation (In db) = '
);
Read more »
« Prev
« Home »
Subscribe to:
Posts (Atom)