diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /929/CH6/EX6.8.c/Example6_8_c.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '929/CH6/EX6.8.c/Example6_8_c.sce')
-rwxr-xr-x | 929/CH6/EX6.8.c/Example6_8_c.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/929/CH6/EX6.8.c/Example6_8_c.sce b/929/CH6/EX6.8.c/Example6_8_c.sce new file mode 100755 index 000000000..0626f2ee8 --- /dev/null +++ b/929/CH6/EX6.8.c/Example6_8_c.sce @@ -0,0 +1,21 @@ +//Example 6.8(c)
+
+clear;
+
+clc;
+
+Vs=15;
+
+A=10;
+
+Vim=40*10^(-3);
+
+SR=0.5*10^6;
+
+fmax=SR/(2*%pi*Vim*A);
+
+ft=1*10^6;
+
+fB=ft/A;
+
+printf("Useful Frequency Range of Operation f<=%.2f kHz",fB*10^(-3));
\ No newline at end of file |