summaryrefslogtreecommitdiff
path: root/2414/CH9/EX9.6
diff options
context:
space:
mode:
Diffstat (limited to '2414/CH9/EX9.6')
-rwxr-xr-x2414/CH9/EX9.6/Ex9_6.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2414/CH9/EX9.6/Ex9_6.sce b/2414/CH9/EX9.6/Ex9_6.sce
new file mode 100755
index 000000000..a646f280e
--- /dev/null
+++ b/2414/CH9/EX9.6/Ex9_6.sce
@@ -0,0 +1,13 @@
+clc;
+close();
+clear();
+//page no 313
+//prob no. 9.6
+Vimax=16; //Volts
+Vomax=2; //Volts
+m=255; //meu
+vi=[2 4 8 16];
+vo=Vomax*log(1+m*vi/Vimax)/log(1+m);
+table=[vi' vo'];
+mprintf(' vi(V) vo(V)');
+disp(table);