blob: f79c550d6945d1696969e6a1d96ed3b3ab1db1e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Exa 8.4
clc;
clear;
close;
//Given data
R=100;//in kOhm
R=R*10^3;//in Ohm
C=0.01;//in uF
C=C*10^-6;//in F
fo=sqrt(6)/(2*%pi*R*C);//in Hz
disp(fo,"Frequency of oscillation in Hz : ");
//Note : Answer in the book is not accurate.
|