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.23 | |
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.23')
-rwxr-xr-x | 998/CH29/EX29.23/Ex23.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/998/CH29/EX29.23/Ex23.sce b/998/CH29/EX29.23/Ex23.sce new file mode 100755 index 000000000..3f633ec11 --- /dev/null +++ b/998/CH29/EX29.23/Ex23.sce @@ -0,0 +1,9 @@ +//Ex:23
+clc;
+clear;
+close;
+B_s=10^6;//B.W. in Hz
+a=0.5;//Roll_off of a filter
+r_sym=B_s/(1+a);//Symbol rate in bps
+printf("Symbol rate =%f bit/sec", r_sym);
+printf("\n Symbol rate =%f Kbit/sec", r_sym/1000);
\ No newline at end of file |