blob: a99939b0bb8f5eee98b24ff409134b557b5aaf55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter-9 example 23
//=============================================================================
clc;
clear;
//input data
F = 12*10^9;//operating frequency in Ghz
I = 2;//current in amperes
Rr = 300;//radiation resistance in ohms
//Calculations
Pr = I*I*Rr;
//output
mprintf('Radiated Power is %3.1f Watts',Pr);
//================end of the program============================================
|