diff options
Diffstat (limited to '1574/CH2/EX2.7/SCS_ex_2_7.sce')
-rwxr-xr-x | 1574/CH2/EX2.7/SCS_ex_2_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1574/CH2/EX2.7/SCS_ex_2_7.sce b/1574/CH2/EX2.7/SCS_ex_2_7.sce new file mode 100755 index 000000000..29c60ae49 --- /dev/null +++ b/1574/CH2/EX2.7/SCS_ex_2_7.sce @@ -0,0 +1,13 @@ +clc;
+// Chapter 2 Switched communication systems
+//Example 2.7,page no 135
+//given
+N=7//no of character elements
+E_C=10//elements per character (1+7+1+1)
+To=100e-3//duration of one character
+Te=To/E_C//duration of each element
+mprintf('duration of each element is:%f msec\n',Te*1e3)
+Sb=1/Te//speed in bauds
+mprintf('speed is %f bauds\n',Sb)
+C=2^N//total possible combinations
+mprintf('total possible combinations are:%f',C)
|