blob: af6d77a4804f7533f4ee8b856b3f72df838a3812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Example 7.1(c)
clear;
clc;
fL=0.1;
fH=1*10^6;
enw=20*10^(-9);
fce=200;
En=enw*sqrt((fce*log(fH/fL))+fH-fL);
printf("Estimated RMS input voltage=%.1f uV",En*10^6);
|