summaryrefslogtreecommitdiff
path: root/3507/CH19/EX19.6/Ex19_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3507/CH19/EX19.6/Ex19_6.sce')
-rw-r--r--3507/CH19/EX19.6/Ex19_6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3507/CH19/EX19.6/Ex19_6.sce b/3507/CH19/EX19.6/Ex19_6.sce
new file mode 100644
index 000000000..81b60bd43
--- /dev/null
+++ b/3507/CH19/EX19.6/Ex19_6.sce
@@ -0,0 +1,15 @@
+//chapter19
+//example19.6
+//page420
+
+fc=1000 // kHz
+fs=5 // kHz
+m=0.5
+Ec=100 // V
+
+lower_sideband=fc-fs
+upper_sideband=fc+fs
+amplitude=m*Ec/2
+
+printf("lower and upper sideband frequencies = %.3f kHz and %.3f kHz \n",lower_sideband,upper_sideband)
+printf("amplitude of each sideband term = %.3f V \n",amplitude)