blob: a0bb9182935624f9a96192d7545ee47837a94433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc;
tr=0.000000040;
fc=0.35/tr;
tf=0.000000030;
fmax=0.35/(100*tr);
disp('MHz',fc/1000000,"fc=");//The provided in the textbook is wrong
disp('kHz',fmax/1000,"fmax=");//The provided in the textbook is wrong
|