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 /1061/CH9/EX9.6 | |
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 '1061/CH9/EX9.6')
-rwxr-xr-x | 1061/CH9/EX9.6/Ex9_6.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1061/CH9/EX9.6/Ex9_6.sce b/1061/CH9/EX9.6/Ex9_6.sce new file mode 100755 index 000000000..7a69f55f1 --- /dev/null +++ b/1061/CH9/EX9.6/Ex9_6.sce @@ -0,0 +1,10 @@ +//Ex:9.6
+clc;
+clear;
+close;
+vd=2.5*10^4;// carrier velocity in m/s
+w=30*10^-6;// width in m
+Bm=vd/(2*%pi*w);
+Tm=1/Bm;// max response time in sec
+Tm1=Tm*10^9;// max response time in ns
+printf("The max response time =%f ns", Tm1);
\ No newline at end of file |