summaryrefslogtreecommitdiff
path: root/992/CH8/EX8.3/ex8_3.txt
blob: 860aaa6a2eb3f5e083a35cb62c343cca349ce72f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Caption:Program to calculate nyquist sampling rate,elements transmitted.
//Exa:8.3
clc;
clear;
close;
//Given:
Bw=25;//in KHz
Nr=2*Bw*1000;
printf("\n Nyquist sampling rate = %f samples/seconds",Nr/1000);
br=8;//bits
Ne=br*Nr;
printf("\n Transmitted elements = %f elements",Ne);