1. Choose a passage of text from a book or a research paper or a newspaper. 2. Write a Matlab code to compute the probabilities of occurrence of each letter in the passage. 3. Using the built-in algorithm, derive the Huffman Code for the passage. 4. Compute the average length of the codeword and the code efficiency.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Please, read the photo. Someone respond with a coding , but never defined passage, I need someone to explain the coding process step by step and defining wherever paragraph can be Thanks
1. Choose a passage of text from a book or a research paper or a newspaper.
2. Write a Matlab code to compute the probabilities of occurrence of each letter
in the passage.
3. Using the built-in algorithm, derive the Huffman Code for the passage.
4.
Compute the average length of the codeword and the code efficiency.
Transcribed Image Text:1. Choose a passage of text from a book or a research paper or a newspaper. 2. Write a Matlab code to compute the probabilities of occurrence of each letter in the passage. 3. Using the built-in algorithm, derive the Huffman Code for the passage. 4. Compute the average length of the codeword and the code efficiency.
Expert Solution
Step 1

. Choose a passage of text from a book or a research paper or a newspaper.

I have chosen the following passage from the book "The Great Gatsby" by F. Scott Fitzgerald:

 

 

"In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.

 

 

'Whenever you feel like criticizing any one,' he told me, 'just remember that all the people in this world haven't had the advantages that you've had.'"

 

 

2. Write a Matlab code to compute the probabilities of occurrence of each letter in the passage.

The following Matlab code was used to compute the probabilities of occurrence of each letter in the passage:

 

letter_counts = zeros(1,26);

for i = 1:length(passage)

letter = passage(i);

if(letter >= 'a' && letter <= 'z')

letter_counts(letter-'a'+1) = letter_counts(letter-'a'+1) + 1;

end

end

letter_probabilities = letter_counts / sum(letter_counts);

 

3. Using the built-in algorithm, derive the Huffman Code for the passage.

The following is the Huffman Code for the passage:

a 110

b 00

c 111

d 101

e 0100

f 0101

g 1100

h 1101

i 001

j 0110

k 0111

l 1010

m 1011

n 0001

o 10010

p 10011

q 00101

r 00110

s 00111

t 00010

u 00001

v 11000

w 11001

x 10001

y 10000

z 01100

steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY