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 --- 2534/CH10/EX10.6/Ex10_6.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 2534/CH10/EX10.6/Ex10_6.sce (limited to '2534/CH10/EX10.6') diff --git a/2534/CH10/EX10.6/Ex10_6.sce b/2534/CH10/EX10.6/Ex10_6.sce new file mode 100755 index 000000000..8d7d7e057 --- /dev/null +++ b/2534/CH10/EX10.6/Ex10_6.sce @@ -0,0 +1,16 @@ +//Ex10_6 +clc +Av = 100//voltage gain +beta = 0.05//feedback ratio +BW = 400*10^3 //bandwidth +disp("Av = "+string(Av)) +disp("beta = "+string(beta)) +disp("B.W. = "+string(BW)+"Hz") +Af = Av/(1+beta*Av)//gain with negative feedback +disp("Af = Av/(1+beta*Av) = "+string(Af)) +BWf = BW*(1+beta*Av)//bandwidth with negative feedback +disp("(B.W)f = "+string(BWf)+"Hz") + + +// note : using variable "BW" instad of "B.W" ... as, if using B.W the software takes it as a function. +// similarly using "BWf" instead of (B.W)f. -- cgit