blob: 9bc909ac2b6f1ff0b40596e5fe163bc19efc5131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// To find dynamic range of spectrum analyser
// Modern Electronic Instrumentation And Measurement Techniques
// By Albert D. Helfrick, William D. Cooper
// First Edition Second Impression, 2009
// Dorling Kindersly Pvt. Ltd. India
// Example 9-1 in Page 277
clear; clc; close;
// Given data
I_p = +25; //Third order intercept point in dBm
MDS = -85; //noise level in dBm
//Calculations
dynamic_range = 2/3*(I_p -MDS);
printf("The dynamic range of the spectrum analyser = %d dB",dynamic_range);
//Result
// The dynamic range of the spectrum analyser = 73 dB
|