blob: 2c0ca4df4fd458d33518ff7d80c2b4bffd4567d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Chapter9
// Frequency of oscillation
// Page.No-306
// Example9_1
//Figure 9.8
// Given
clear;clc;
R=50000; //in Ohm
C=0.01*10^-6; //in F
f=1/(2*%pi*R*C);
printf("\n The frequency of oscillation = %.0f Hz\n",f); // Result
|