summaryrefslogtreecommitdiff
path: root/1658/CH27/EX27.12/Ex27_12.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1658/CH27/EX27.12/Ex27_12.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1658/CH27/EX27.12/Ex27_12.sce')
-rwxr-xr-x1658/CH27/EX27.12/Ex27_12.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1658/CH27/EX27.12/Ex27_12.sce b/1658/CH27/EX27.12/Ex27_12.sce
new file mode 100755
index 000000000..10d12cb65
--- /dev/null
+++ b/1658/CH27/EX27.12/Ex27_12.sce
@@ -0,0 +1,15 @@
+clc;
+//e.g 27.12
+AV=1000;
+f1=50;
+f2=200*10**3;
+D=0.05;
+beta=0.01;
+AV1=AV/(1+beta*AV);
+disp(AV1);
+fl1=f1/(1+beta*AV);
+disp('HZ',fl1,"fl1=");
+fu2=(1+beta*AV)*f2;
+disp('MHZ',fu2*10**-6,"fu2=");
+D1=D/(1+beta*AV);
+disp('%',D1*100,"D1=");