diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1574/CH2/EX2.7/SCS_ex_2_7.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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)
|