From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2360/CH4/EX4.7/ex4_7.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 2360/CH4/EX4.7/ex4_7.sce (limited to '2360/CH4/EX4.7/ex4_7.sce') diff --git a/2360/CH4/EX4.7/ex4_7.sce b/2360/CH4/EX4.7/ex4_7.sce new file mode 100755 index 000000000..2fe6a06d4 --- /dev/null +++ b/2360/CH4/EX4.7/ex4_7.sce @@ -0,0 +1,13 @@ +// Exa 4.7 +format('v',7);clc;clear;close; +// Given data +n = 3;// number of bit +R = 1/(10^n); +V = 1;// in V +// For 1V range, +Resolution = V*R;// in V +disp(Resolution,"For 1 V range, the resolution in V is"); +// For 50 V range, +V = 50;// in V +Resolution = V*R;// in V +disp(Resolution,"For 50 V range, the resolution in V is"); -- cgit