summaryrefslogtreecommitdiff
path: root/2219/CH10/EX10.11/Ex10_11.sce
blob: d752f67e7e776014e562d3f70be5f12caa08e0c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Chapter 10 example 11
//------------------------------------------------------------------------------
clc;
clear;
//Given data
R       = 100;          // Range in kms
PRR     = 10*10^3;      // pulse rep. rate in Hz
c       = 3*10^5;       // vel. in km/s

// Calculations
PRI     = 1/PRR        // pulse rep. interval
Ra      = modulo(R,(c*PRI/2));      // apparent range in km

// Output
mprintf('Apparent Range = %d Km\n',Ra);
//------------------------------------------------------------------------------