0% found this document useful (0 votes)
36 views2 pages

For The DAC Given in Problem-3, Assuming N 8, A 0.001 Plot INL and DNL

Given data to plot Integral Non-Linearity (INL) and Differential Non-Linearity (DNL) for a Digital-to-Analog Converter with N=8 and a=0.001. The code sweeps variable k from 1 to 255, calculates INL and DNL values, and plots the results in two subplots - with INL in red on the top plot and DNL in blue on the bottom plot. Axis labels and titles are added to each subplot.

Uploaded by

Aamodh Kuthethur
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views2 pages

For The DAC Given in Problem-3, Assuming N 8, A 0.001 Plot INL and DNL

Given data to plot Integral Non-Linearity (INL) and Differential Non-Linearity (DNL) for a Digital-to-Analog Converter with N=8 and a=0.001. The code sweeps variable k from 1 to 255, calculates INL and DNL values, and plots the results in two subplots - with INL in red on the top plot and DNL in blue on the bottom plot. Axis labels and titles are added to each subplot.

Uploaded by

Aamodh Kuthethur
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

AMSD assignment 15VL01F 2016

For the DAC given in Problem-3, assuming N=8, a=0.001 plot INL and
DNL.
%Plot of INL and DNL
clear all;
% Given data
N=8;
M=2^N;
alpha= 0.001;
%Sweep 'k' from 1 to 255 in steps of 1
k=1:1:255;
%Estimate the number of sampling points
NumSamp=length(k);
for i=1:NumSamp
INL(1,i) = ((k(i)*(alpha/2)*(k(i)-M))/(1+(alpha/2)));
DNL(1,i) = (((alpha/2)*(2*k(i)-M-1))/(1+(alpha/2)));
End
subplot(2,1,1), plot(INL,'r')
xlabel('k')
ylabel('INL')
grid on
grid minor
title('INL plot')
subplot(2,1,2), plot(DNL,'b')
xlabel('k')
ylabel('DNL')
grid on
grid minor
title('DNL plot')

Dept. of ECE, NITK Surathkal

Page 1

AMSD assignment 15VL01F 2016

Plot

Dept. of ECE, NITK Surathkal

Page 2

You might also like