blob: 76b979028486756ca9b39844008f757e310bc34d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc;
close();
//page no 248
//prob no. 7.16
Kf=4; //kHz/V
f0=100; //kHz
// Part a
vm=2; //Volts
delta_f=Kf*vm; //kHz
f=f0+delta_f; //kHz
disp(f,'Corresponding frequwncy to this input is',delta_f,'(a) The change in frequency is');
//Part b
vm=-3; //Volts
delta_f=Kf*vm; //kHz
f=f0+delta_f; //kHz
disp(f,'Corresponding frequwncy to this input is',delta_f,'(b) In this case,the change in frequency is');
|