summaryrefslogtreecommitdiff
path: root/2606/CH8/EX8.23
diff options
context:
space:
mode:
Diffstat (limited to '2606/CH8/EX8.23')
-rwxr-xr-x2606/CH8/EX8.23/ex8_23.jpgbin0 -> 5785 bytes
-rwxr-xr-x2606/CH8/EX8.23/ex8_23.sce25
2 files changed, 25 insertions, 0 deletions
diff --git a/2606/CH8/EX8.23/ex8_23.jpg b/2606/CH8/EX8.23/ex8_23.jpg
new file mode 100755
index 000000000..fc56e0e12
--- /dev/null
+++ b/2606/CH8/EX8.23/ex8_23.jpg
Binary files differ
diff --git a/2606/CH8/EX8.23/ex8_23.sce b/2606/CH8/EX8.23/ex8_23.sce
new file mode 100755
index 000000000..34c423161
--- /dev/null
+++ b/2606/CH8/EX8.23/ex8_23.sce
@@ -0,0 +1,25 @@
+//Page Number: 8.23
+//Example 8.23
+clc;
+//Given,
+// S=10D-8*(1-(|f|/10D+8));
+
+
+//(a)Power contenet of output noise
+//Bandwidth of 2MHz centered at 50MHz
+//Therefore, first limits will be
+
+x0=-51D+6;
+x1=-49D+6;
+P1=integrate('1+(f/10^8)','f',x0,x1);
+
+//And,second limits will be
+
+x2=49D+6;
+x3=51D+6;
+
+P2=integrate('1-(f/10^8)','f',x2,x3);
+
+P=10D-8*(P1+P2);
+disp('W',P,'Power content:');
+