You are on page 1of 7

Data and Results

A.

Figure7-1_Group3

Figure7-2_Group3
Figure7-3_Group3

% B. PCM using Matlab

clc;
close all;
clear all;
number_of_bits=10;
sample_list=10;
level_list=2^number_of_bits;

% Signal Generation
x=0:1/100:4*pi;
y=1*sin(x); % Amplitude of signal is 6 Vpp or 3Vp, frequency
of 4Hz
subplot(2,2,1);
plot(x,y);
grid on;

% Sampling Operation
x=0:2*pi/sample_list:4*pi; % n1 number of samples have to be
selected
s=1*sin(x); % sampling frequency of 40Hz

subplot(3,1,1);
plot(s);
title('Analog Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

subplot(3,1,2);
stem(s);
grid on;
title('Flat-topped Sampled Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

% Quantization Process
vmax=8;
vmin=-vmax;
del=(vmax-vmin)/level_list;
part=vmin:del:vmax; % level are between vmin and
vmax with difference of del
PCM_codes=vmin-(del/2):del:vmax+(del/2); % Contain Quantized
values
[ind,PCM_decimals]=quantiz(s,part,PCM_codes); % Quantization
process
% ind contains index number
and q contain quantized values
l1=length(ind);
l2=length(PCM_decimals);

for i=1:l1
if(ind(i)~=0) % To make index as binary decimal so
started from 0 to N
ind(i)=ind(i)-1;
end
i=i+1;
end
for i=1:l2
if(PCM_decimals(i)==vmin-(del/2)) % To make quantize value
in between the levels
PCM_decimals(i)=vmin+(del/2);
end
end
subplot(3,1,3);
stem(PCM_decimals);
grid on; % Display the Quantize values
title('Quantized Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

% Encoding Process
figure
PCM_codes=de2bi(ind,'left-msb');% Convert the decimal to binary
k=1;
for i=1:l1
for j=1:number_of_bits
coded(k)=PCM_codes(i,j);% Convert code matrix to a coded
row vector
j=j+1;
k=k+1;
end
i=i+1;
end

subplot(2,1,1); grid on;


stairs(coded); % Display the encoded signal
axis([0 100 -2 3]);
title('Encoded Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

% Demodulation of PCM signal

qunt=reshape(coded,number_of_bits,length(coded)/number_of_bits);
PCM_codes=bi2de(qunt','left-msb'); % Getback the index in
decimal form
PCM_decimals=del*PCM_codes+vmin+(del/2);% getback Quantized
values

subplot(2,1,2); grid on;


plot(PCM_decimals); % Plot Demodulated signal
title('Demodulated Signal');
ylabel('Amplitude--->');
xlabel('Time--->');
%------------------------------------------------------------

% C. Exercise

clc;
close all;
clear all;
number_of_bits=14;
sample_list=14;
level_list=2^number_of_bits;

% Signal Generation
x=0:1/100:4*pi;
y=3*sin(x); % Amplitude of signal is 6 Vpp or 3Vp
subplot(2,2,1);
plot(x,y);
grid on;

% Sampling Operation
x=0:2*pi/sample_list:4*pi; % n1 number of samples have to be
selected
s=3*sin(x);

subplot(3,1,1);
plot(s);
title('Analog Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

subplot(3,1,2);
stem(s);
grid on;
title('Flat-topped Sampled Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

% Quantization Process
vmax=8;
vmin=-vmax;
del=(vmax-vmin)/level_list;
part=vmin:del:vmax; % level are between vmin and
vmax with difference of del
PCM_codes=vmin-(del/2):del:vmax+(del/2); % Contain Quantized
values
[ind,PCM_decimals]=quantiz(s,part,PCM_codes); % Quantization
process
% ind contains index number
and q contain quantized values
l1=length(ind);
l2=length(PCM_decimals);

for i=1:l1
if(ind(i)~=0) % To make index as binary decimal so
started from 0 to N
ind(i)=ind(i)-1;
end
i=i+1;
end
for i=1:l2
if(PCM_decimals(i)==vmin-(del/2)) % To make quantize value
in between the levels
PCM_decimals(i)=vmin+(del/2);
end
end
subplot(3,1,3);
stem(PCM_decimals);
grid on; % Display the Quantize values
title('Quantized Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

% Encoding Process
figure
PCM_codes=de2bi(ind,'left-msb');% Convert the decimal to binary
k=1;
for i=1:l1
for j=1:number_of_bits
coded(k)=PCM_codes(i,j);% Convert code matrix to a coded
row vector
j=j+1;
k=k+1;
end
i=i+1;
end

subplot(2,1,1); grid on;


stairs(coded); % Display the encoded signal
axis([0 100 -2 3]);
title('Encoded Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

% Demodulation of PCM signal

qunt=reshape(coded,number_of_bits,length(coded)/number_of_bits);
PCM_codes=bi2de(qunt','left-msb'); % Getback the index in
decimal form
PCM_decimals=del*PCM_codes+vmin+(del/2);% getback Quantized
values

subplot(2,1,2); grid on;


plot(PCM_decimals); % Plot Demodulated signal
title('Demodulated Signal');
ylabel('Amplitude--->');
xlabel('Time--->');

You might also like