blob: 460417e36ca7440d2534a7d7e8d9f47cc60126b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example13.6 // Determine the frequency response of the astable multivibrator circuit
clc;
clear;
close;
Vsat = 2.5 ;
VT = 0.7 ;
// The frequency of the astable multivibrator is
//f = (1/(2*R*C*log((Vsat+VT)/(Vsat-VT))));
disp('The frequency of the astable multivibrator is= 0.87/RC ');
|