summaryrefslogtreecommitdiff
path: root/1850/CH7/EX7.6/exa_7_6.sce
blob: 0aa2c76d9865be8adedcb5489a1941b309e24d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Exa 7.6
clc;
clear;
close;
//given data
R= 10;// in kohm
R=R*10^3;// in ohm
C= 100;// in pF
C=C*10^-12;// in F
f=1/(2*%pi*R*C);// in Hz
disp(f*10^-3,"Frequency of the oscillation of the circuit in kHz")