From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3515/CH5/EX5.23/Ex5_23.sce | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 3515/CH5/EX5.23/Ex5_23.sce (limited to '3515/CH5/EX5.23') diff --git a/3515/CH5/EX5.23/Ex5_23.sce b/3515/CH5/EX5.23/Ex5_23.sce new file mode 100644 index 000000000..9a9847309 --- /dev/null +++ b/3515/CH5/EX5.23/Ex5_23.sce @@ -0,0 +1,33 @@ +// Exa 5.23 +format('v',5); +clc; +clear; +close; +// Given data +A=10^5; +Af= 10^3; +// Af= A/(1+A*Bita) +Bita= 1/Af-1/A; +GDF= 1+A*Bita;// gain densitivity factor +disp(GDF,"Gain densitivity factor is : ") +// Part (a) when A drops 10 % +A_desh= A-A*10/100; +Af_desh= A_desh/(1+A_desh*Bita); +CorresPer= (Af-Af_desh)/Af*100;// corresponding percentage in % +disp(CorresPer,"When A drops by 10 % then corresponding percentage is ") +// Part (b) when A drops 30 % +A_desh= A-A*30/100; +Af_desh= A_desh/(1+A_desh*Bita); +CorresPer= (Af-Af_desh)/Af*100;// corresponding percentage in % +disp(CorresPer,"When A drops by 30 % then corresponding percentage is ") + + + + + + + + + + + -- cgit