diff options
Diffstat (limited to '1184/CH17/EX17.2/Ex17_2.sce')
-rwxr-xr-x | 1184/CH17/EX17.2/Ex17_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1184/CH17/EX17.2/Ex17_2.sce b/1184/CH17/EX17.2/Ex17_2.sce new file mode 100755 index 000000000..b3673fffd --- /dev/null +++ b/1184/CH17/EX17.2/Ex17_2.sce @@ -0,0 +1,14 @@ +//Example 17-2,Page No -681
+
+clear
+clc
+
+flo = 2*10^9
+fd =3840*10^6
+B =36*10^6
+
+fu =fd+flo
+C =2*B
+
+printf('The uplink frequency is %.2f Ghz',fu/10^9)
+printf('\n\nThe data rate is %d Mbps', C/10^6)
|