blob: 70d25c70c7fb34ebb981f49bda0dfab9440765b7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example11.3 // determine the resolution of 4-bit D/A converter
clc;
clear;
close;
VFS = 12 ;
N = 4 ;
// the resolution of 4-bit D/A converter is defined as
Resolution = VFS/(2^N-1) ;
disp('the resolution of 4-bit D/A converter is = '+string(Resolution)+ ' V ');
|