summaryrefslogtreecommitdiff
path: root/3637/CH4/EX4.20/Ex4_20.sce
blob: 734dff82c3f1170eada8c3e8fbabf13e2ec80e43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//problem 20 pagenumber 4.46
//given
vref=10;//volt
z=['01','0111','10111100'];format(6);
n=2;
v0=vref*(1/2^2);
disp('Output voltage at '+string(z(1))+' = '+string(v0)+' volt');
n=4
v0=vref*(1/2^2+1/2^3+1/2^4);
disp('Output voltage at '+string(z(2))+' = '+string(v0)+' volt');
v0=vref*(1/2+1/2^3+1/2^4+1/2^5+1/2^6+1/2^8);
disp('Output voltage at '+string(z(2))+' = '+string(v0)+' volt');