summaryrefslogtreecommitdiff
path: root/2219/CH10/EX10.18/Ex10_18.sce
blob: bf4ecc30799ad2da5e2a25432a0f6f7541888f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Chapter 10 example 18
//------------------------------------------------------------------------------
clc;
clear;
//Given data
B       = 10^6;     // Bandwidth in Mhz
c       = 3*10^8;   // speed of light in m/s

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

// Output
mprintf('Range Resolution = %d m\n',RR);
//------------------------------------------------------------------------------