blob: c9fb675182e549c1e1988037f80f2d4f1aa6edef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
disp("Example 5.61")
printf("\n")
disp("calculate the frequency of oscillation for Wein_Bridge Oscillator")
printf("Given\n")
//Resistance
R=2*10^3
//capacitor
C=0.1*10^-6
//frequency of oscillation
f=1/(2*%pi*R*C)
printf("frequecy of oscillation \n%f hz\n",f)
|