blob: 28e360a4dd6776a45d6f4f5ee1ae73863aa9ff91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Exa 5.14
clc;
clear;
close;
format('v',6)
// Given data
A = 125;
Beta = 1/10;
// Gain of negative feedback
Af = A/(1+(A*Beta));
disp(Af,"The gain of negative feedback is");
|