blob: bb3f412ad9d2565daaf91c0e05a7bd5bbecb52b1 (
plain)
1
2
3
4
5
6
7
8
9
|
// Example 6.10 //power coupled
clc;
clear;
close;
tha=15;//in degree
po=1;//in micro watt
nc=(sind(tha))^2;//
pf=nc*po*10^-6;//in watts
disp(pf*10^9,"power coupled in nW is")
|