diff options
Diffstat (limited to '3446/CH19/EX19.2/Ex19_2.sce')
-rw-r--r-- | 3446/CH19/EX19.2/Ex19_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3446/CH19/EX19.2/Ex19_2.sce b/3446/CH19/EX19.2/Ex19_2.sce new file mode 100644 index 000000000..8e9d8eb32 --- /dev/null +++ b/3446/CH19/EX19.2/Ex19_2.sce @@ -0,0 +1,14 @@ +// Exa 19.2
+// To find the associated data rate.
+
+clc;
+clear all;
+
+R=136; // bits per slot
+SR=800; // no of slots per second
+
+//solution
+// A symmetric 1-slot DM1 link is setup between a master and a slave
+AR=R*SR; //Data rate in bps
+
+printf('Associated data rate is %0.1f kbps \n ',AR/1000);
|