blob: 270c4454a8625a4821fd5fefa4cedbcdf6f18ef5 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
funity=15000000;
Acl=500;
fc=funity/Acl;
BW=fc;
fc1=200000;
AcL=funity/fc1;
disp('kHz',fc/1000,"fc=");//The answers vary due to round off error
disp('',AcL,"AcL=");//The answers vary due to round off error
|