blob: 795dae859fe90dfc363dd37f20fea60a9c2a18da (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
fc1=30;
fc2=275;
f0=90.8;
ratio1=f0/fc1;
ratio2=fc2/f0;
disp('Ratio of f0/fc1',ratio1,"ratio1=")//The answers vary due to round off error
disp('Ratio fof fc2/f0',ratio1,"ratio1=")//The answers vary due to round off error
|