blob: 5aebd2d844103c9ae76b19b1a85833dc64afe340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Example 11.11
clc;
//Wein's Bridge
//Given values of bridge elements
R1=4700;
C1=5*10^-9;
C3=10*10^-9;
R3=10000;
//Frequency of the circuit
x=sqrt(C1*C3*R1*R3);
f=invr(2*%pi*x);
printf('\nFrequency of the circuit is %.2f Hz',f)
|