Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

digital signal prossecing, Cheat Sheet of Digital Signal Processing

this book is good to study and

Typology: Cheat Sheet

2023/2024

Uploaded on 04/24/2025

partheepan
partheepan 🇮🇳

1 document

1 / 66

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
SECA1506 - Digital Signal Processing
Semester -V
DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING
UNIT 3
FINITE WORD LENGTH EFFECTS
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34
pf35
pf36
pf37
pf38
pf39
pf3a
pf3b
pf3c
pf3d
pf3e
pf3f
pf40
pf41
pf42

Partial preview of the text

Download digital signal prossecing and more Cheat Sheet Digital Signal Processing in PDF only on Docsity!

SECA1506 - Digital Signal Processing

Semester -V

DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING

UNIT 3

FINITE WORD LENGTH EFFECTS

INTRODUCTION

 (^) This representation has fixed number of bits for integer part and for fractional part.  (^) Can store minimum value is 0000.0001 and maximum value is 9999.9999.  (^) There are three parts of a fixed-point number representation: the sign field, integer field, and fractional field. Fixed-Point Representation − We can represent these numbers using: Signed representation: range from -( (k-1) -1) to ( (k-1) -1), for k bits. 1’s complement representation: range from -( (k-1) -1) to ( (k-1) -1), for k bits. 2’s complementation representation: range from -( (k-1) ) to ( (k-1) -1), for k bits.

Example − Assume number is using 32-bit format which reserve 1 bit for the sign, 15 bits for the integer part and 16 bits for the fractional part. Then, -43.625 is represented as following: Where, 0 is used to represent + and 1 is used to represent. 000000000101011 is 15 bit binary value for decimal 43 and 1010000000000000 is 16 bit binary value for fractional 0.625. Fixed-Point Representation cont… −