summaryrefslogtreecommitdiff
path: root/2219/CH9/EX9.4/Ex9_4.sce
blob: 1b19674451b4a3545a2f991cd2345ed8807e4bde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Chapter 9 example 4
//------------------------------------------------------------------------------
clc;
clear;
// Given Data
PW_tx   = 10^-6;            // Transmitted pulse width
Rx_PW   = 10^-6;            // Received pulse width        
c       = 3*10^8;           // velocity of EM waves in m/s

// Calculations
RR      = (c*Rx_PW)/2;      // Range Resolution in m

// output
mprintf('This Radar can resolve upto an inter target separation in range of %d m\n Therefore,given radar will be able to resolve the targets',RR);
//------------------------------------------------------------------------------