blob: 4da4e3db7520507642bd0f4f0eec872a45ebc4b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Chapter-11 example 26
//=============================================================================
clc;
clear;
//input data
mprintf('(PRF1) = 2(PRF2)\n');
mprintf(' Vb3 = 4Vb5\n');
mprintf(' (3Vo/2F1)(PRF1)) = 4(5Vo/2F2)(2PRF2)\n');
mprintf(' 3/2F1 = 20/F2\n');
mprintf(' Ratio of operating frequencies is F2/F1 = 40/3\n');
//=================end of the program===========================================
|