blob: 82cf281ab42428e521115479c8a5fb925a4f3313 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 1.3
clc
disp("Given: beta = 0.04, Distortion with feedback = 3%, Distortion without feedback = 15%")
d=15/3
format(2)
disp(d,"Therefore, D =")
disp("where D = 1 + A*beta = 5")
a=4/0.04
format(4)
disp(a,"Therefore, A =")
|