blob: 4f4b62475be1578f74b82cf136d52454054e3e89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//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);
|