blob: 098fe3bed15bdbc91cdec32f1982c91622998051 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//Chapter-7 example 5
//=============================================================================
clc;
clear;
//input data
BW = 0.5*10^9; //Bandwidth of waveform in Hz
PW = 5*10^-3; //pulse width in sec
Vo = 3*10^8; //velocity of EM wave
//Calculations
RR = (Vo*PW)/2 ; //Range Resolution in m before compression
//RR = Vo*tn1/2 ;
tn1 = 1/BW ;
RRc = (Vo*tn1)/2 ; //Range Resolution in m after compression
//output
mprintf('Range Resolution before compression = %e m\n Range Resolution before compression = %3.2f m\n',RR,RRc );
mprintf(' Note: Wrong Calculation in Textbook');
|