summaryrefslogtreecommitdiff
path: root/1553/CH11/EX11.22
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH11/EX11.22')
-rw-r--r--1553/CH11/EX11.22/11Ex22.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1553/CH11/EX11.22/11Ex22.sce b/1553/CH11/EX11.22/11Ex22.sce
new file mode 100644
index 000000000..a5954427f
--- /dev/null
+++ b/1553/CH11/EX11.22/11Ex22.sce
@@ -0,0 +1,16 @@
+//Chapter 9 Ex 22
+
+clc;
+close;
+clear;
+x=poly(0,'x');
+gain=(20/100);
+CP=x;
+CP1=(3/4)*CP;
+CP2=(1/4)*CP; //given
+SP=((1+gain)*CP1)+CP2;
+gain=SP-CP;
+gainper=(gain/CP)*100;
+mprintf("The gain percentage is");
+disp(gainper)
+mprintf("percent");