Hausarbeiten logo
Shop
Shop
Tutorials
En De
Shop
Tutorials
  • How to find your topic
  • How to research effectively
  • How to structure an academic paper
  • How to cite correctly
  • How to format in Word
Trends
FAQ
Zur Shop-Startseite › Informatik - Technische Informatik

Digital Signal Processing Laboratory Experiments using MATLAB

LAB Manual

Titel: Digital Signal Processing  Laboratory Experiments using MATLAB

Technischer Bericht , 2014 , 37 Seiten

Autor:in: Hardik Modi (Autor:in)

Informatik - Technische Informatik

Leseprobe & Details   Blick ins Buch
Zusammenfassung Leseprobe Details

This is Laboratory Manual of Digital Signal Processing. All experiments are performed on MATLAB, e.g.:

List of Experiments
1 To represent basic signals like:Unit Impulse, Ramp, Unit Step, Exponential.
2 To generate discrete sine and cosine signals with given sampling frequency.
3 To represent complex exponential as a function of real and imaginary part.
4 To determine impulse and step response of two vectors using MATLAB.
5 To perform convolution between two vectors using MATLAB.
6 To perform cross correlation between two vectors using MATLAB.

[...]

Leseprobe


DigitalSignalProcessing
LaboratoryExperiments
usingMATLAB

DIGITAL SIGNAL PROCESSING
2
List of Experiments
Exp.
No
Name of Experiment
1
To represent basic signals like:Unit Impulse, Ramp, Unit Step,
Exponential.
2
To generate discrete sine and cosine signals with given sampling
frequency.
3
To represent complex exponential as a function of real and imaginary
part.
4
To determine impulse and step response of two vectors using
MATLAB.
5
To perform convolution between two vectors using MATLAB.
6
To perform cross correlation between two vectors using MATLAB.
7
To compute DFT and IDFT of a given sequence using MATLAB.
8
To perform linear convolution of two sequence using DFT using
MATLAB.
9
To determine z-transform from the given transfer function and its ROC
using MATLAB.
10
To determine rational z-transform from the given poles and zeros using
MATLAB.
11
To determine partial fraction expansion of rational z-transform using
MATLAB.
12
To design a Type 1 Chebyshev IIR highpass filter using MATLAB.
13
To design an IIR Elliptic low pass filter using MATLAB.
14
To design an IIR Butterworth bandpass filter using MATLAB.
15
To generate rectangular ,hamming ,hanning ,blackman and kaier
window using MATLAB.
16
To design low pass filter using the Kaiser window using MATLAB.
17
To study coefficient quantization effects on the frequency response of a
cascade form IIR filter using MATLAB.

DIGITAL SIGNAL PROCESSING
3
EXPERIMENT ­ 1
AIM : To represent basic signals like
1.
Unit Impulse
2.
Ramp
3.
Unit Step
4.
Exponential.
PROGRAM :
clc;
clear all;
t=0:1:10;
y = [zeros(1,5),ones(1,1),zeros(1,5)]; %%Unit Impulse Signal
subplot(2,2,1);
stem(t,y);
xlabel(`Unit Impulse');
ylabel(`Amplitude');
y = 0:1:10; %% Ramp Signal
subplot(2,2,2);
stem(t,y);
xlabel(`Ramp');
ylabel(`Amplitude');
y = ones(1,11); %% Unit Step Signal
subplot(2,2,3);
stem(t,y);
xlabel(`Unit Step');
ylabel(`Amplitude');
y = exp(t); %% Exponential Signal
subplot(2,2,4);
stem(t,y);
xlabel(`Exponential');
ylabel(`Amplitude');

DIGITAL SIGNAL PROCESSING
4
GRAPHS :
CONCLUSION :
From this experiment we can conclude that we can observe the waveforms
of basic signals using MATLAB.

DIGITAL SIGNAL PROCESSING
5
EXPERIMENT ­ 2
AIM : To generate discrete sine and cosine signals with given sampling frequency.
PROGRAM :
clc;
clear all;
fs = input(`Enter sampling frequency:');
f = input(`Enter signal frequency:');
a = input(`Enter amplitude:');
t = 0:(1/fs):1; %%Generation of SINE signal
y = a*sin(2*pi*f*t);
subplot(2,1,1);
stem(t,y);
xlabel(`Time --------');
ylabel(`Amplitude --------');
title(`Sine Wave');
t = 0:(1/fs):1; %%Generation of COSINE signal
y = a*cos(2*pi*f*t);
subplot(2,1,2);
stem(t,y);
xlabel(`Time --------');
ylabel(`Amplitude --------');
title(`Cosine Wave');

DIGITAL SIGNAL PROCESSING
6
INPUT :
Enter sampling frequency: 40
Enter signal frequency: 2
Enter amplitude: 2
GRAPHS :
CONCLUSION :
From this experiment we can generate discrete sine and cosine signal with
given sampling frequency using MATLAB.
Ende der Leseprobe aus 37 Seiten  - nach oben

Details

Titel
Digital Signal Processing Laboratory Experiments using MATLAB
Untertitel
LAB Manual
Autor
Hardik Modi (Autor:in)
Erscheinungsjahr
2014
Seiten
37
Katalognummer
V270625
ISBN (eBook)
9783656621485
ISBN (Buch)
9783656621416
Sprache
Englisch
Schlagworte
DSP MATLAB
Produktsicherheit
GRIN Publishing GmbH
Arbeit zitieren
Hardik Modi (Autor:in), 2014, Digital Signal Processing Laboratory Experiments using MATLAB, München, GRIN Verlag, https://www.hausarbeiten.de/document/270625
Blick ins Buch
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • https://cdn.openpublishing.com/images/brand/2/preview_popup_advertising.jpg
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
  • Wenn Sie diese Meldung sehen, konnt das Bild nicht geladen und dargestellt werden.
Leseprobe aus  37  Seiten
Hausarbeiten logo
  • Facebook
  • Instagram
  • TikTok
  • Shop
  • Tutorials
  • FAQ
  • Zahlung & Versand
  • Über uns
  • Contact
  • Datenschutz
  • AGB
  • Impressum