summaryrefslogtreecommitdiff
path: root/2360/CH8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2360/CH8
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 '2360/CH8')
-rwxr-xr-x2360/CH8/EX8.1/ex7_1.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2360/CH8/EX8.1/ex7_1.sce b/2360/CH8/EX8.1/ex7_1.sce
new file mode 100755
index 000000000..0cc67d1ab
--- /dev/null
+++ b/2360/CH8/EX8.1/ex7_1.sce
@@ -0,0 +1,12 @@
+// Exa 7.1
+format('v',7);clc;clear;close;
+// Given data
+BW = 25;//bandwidth in MHz
+Trd = 20;//rise time in ns
+Trd = Trd * 10^-9;// in s
+// BW = 0.35/Tro;
+Tro = 0.35/(BW*10^6);// in s
+// Trd = sqrt( (Trs^2) + (Tro^2) );
+Trs = sqrt( (Trd^2)-(Tro^2) );// rise time of signal in sec
+Trs = Trs * 10^9;// in ns
+disp(Trs,"The rise time of signal in ns is");