diff options
Diffstat (limited to '3547/CH9/EX9.5/Ex9_5.sce')
-rw-r--r-- | 3547/CH9/EX9.5/Ex9_5.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3547/CH9/EX9.5/Ex9_5.sce b/3547/CH9/EX9.5/Ex9_5.sce new file mode 100644 index 000000000..d29ca4525 --- /dev/null +++ b/3547/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,22 @@ +// Example 9.5
+// Calculation of the maximum reach up to which the carrier orthogonality is preserved.
+// Page no 410
+
+clc;
+clear;
+close;
+
+//Given data
+d=30*10^-12; // Delay
+b=0.5*10^-8;
+
+// The maximum reach up to which the carrier orthogonality is preserved
+L=d/b;
+L=L*10^3;
+
+
+
+//Displaying results in the command window
+printf("\n The maximum reach up to which the carrier orthogonality is preserved = %0.3f mm ",L);
+
+// The answers vary due to round off error
|