blob: f279d67e28c01d432d3f9ef1b5dd24a20081c9fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Exa 6.7
format('v',7);
clc;
clear;
close;
// Given data
L= 0.01;// in H
C= 10;// in pF
C= C*10^-12;// in F
f= 1/(2*%pi*sqrt(L*C));// in Hz
disp(f*10^-3,"Frequency of oscillations in kHz is : ")
// Note: Calculation to find the value of f in the book is wrong, so answer in the book is wrong
|