summaryrefslogtreecommitdiff
path: root/2528/CH5/EX5.1
diff options
context:
space:
mode:
Diffstat (limited to '2528/CH5/EX5.1')
-rwxr-xr-x2528/CH5/EX5.1/Ex5_1.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/2528/CH5/EX5.1/Ex5_1.sce b/2528/CH5/EX5.1/Ex5_1.sce
new file mode 100755
index 000000000..968d31d77
--- /dev/null
+++ b/2528/CH5/EX5.1/Ex5_1.sce
@@ -0,0 +1,10 @@
+//Chapter 5
+//page 135
+//Example no 5-1
+clc;
+clear;
+G=20; //in dB
+A=10^(G/20); //Ordinary gain
+GBW=1*10^6; //in Hz (from datasheet)
+f2=GBW/A;
+printf("Uper break frequency %.0f Hz",f2);