blob: 2b9eb3603e2df7f5e3832bf6e5b25c4161f45e37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Exa 7.4
clc;
clear;
close;
//given data
R= 1;// in kohm
R=R*10^3;// in ohm
C= 4.7;// in micro F
C=C*10^-6;// in F
omega=1/(R*C);// in radians/second
f=omega/(2*%pi);// in Hz
disp(f,"Frequency of the oscillation of the circuit in Hz")
|