blob: 599c3eb2e7d1b2b4c98ac01595cd53d334687635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter-11 example 29
//=============================================================================
clc;
clear;
//input data
CR = 50;//compression ratio
PW = 2;//pulse width in us
//Calculations
CPW = PW/CR //compression pulse width in us
BW = 1/CPW //compression band width in Mhz
//output
mprintf('compressed pulse width is %g us\n compression Bandwidth is %g MHz\n',CPW,BW);
//====================end of the program=======================================
|