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 /998/CH29/EX29.42/Ex42.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 '998/CH29/EX29.42/Ex42.sce')
-rwxr-xr-x | 998/CH29/EX29.42/Ex42.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/998/CH29/EX29.42/Ex42.sce b/998/CH29/EX29.42/Ex42.sce new file mode 100755 index 000000000..5d1e4a5a5 --- /dev/null +++ b/998/CH29/EX29.42/Ex42.sce @@ -0,0 +1,10 @@ +//Ex:42
+clc;
+clear;
+close;
+b_n=10*log(10^6)/log(10);// in dbHz
+t_s=10*log(500)/log(10);//temp in dbK
+T_s=ceil(t_s);
+k=-228.6;// in db
+n_rt=k+b_n+T_s;//the noise power in transponder-2 in dbW
+printf("the noise power in transponder-2=%f dbW",n_rt);
\ No newline at end of file |