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 /2606/CH10/EX10.11 | |
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 '2606/CH10/EX10.11')
-rwxr-xr-x | 2606/CH10/EX10.11/ex10_11.jpg | bin | 0 -> 6781 bytes | |||
-rwxr-xr-x | 2606/CH10/EX10.11/ex10_11.sce | 21 |
2 files changed, 21 insertions, 0 deletions
diff --git a/2606/CH10/EX10.11/ex10_11.jpg b/2606/CH10/EX10.11/ex10_11.jpg Binary files differnew file mode 100755 index 000000000..93cc6d59b --- /dev/null +++ b/2606/CH10/EX10.11/ex10_11.jpg diff --git a/2606/CH10/EX10.11/ex10_11.sce b/2606/CH10/EX10.11/ex10_11.sce new file mode 100755 index 000000000..d4f6ae857 --- /dev/null +++ b/2606/CH10/EX10.11/ex10_11.sce @@ -0,0 +1,21 @@ +//Page Number: 10.28
+//Example 10.11
+clc;
+//Given
+Rb=1D+6; //b/s
+T=1D-5;
+N0=2*0.5D-7; //W/Hz
+
+//From table for Q(z)=10^-5
+z=4.25;
+
+//As z=sqrt(A*A*T/2*N0)
+x=((z^2)*2*N0)/T;
+A=sqrt(x);
+disp(A,'Required value of A:');
+
+//(b) Bandwidth
+//B=1/(2*(T/2))
+//Therefore B=1/T
+B=(1/T);
+disp('Hz',B,'Bandwidth:');
|