blob: a24b642c71ddfe3379640442e70436d473b7ba84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Exa 6.6
clc;
clear;
// Given
// Fig 6.44 shows R.L.C bridge
// Solution
printf('For a given RLC circuit the expressions for as follows :- \n ');
printf('Resistance, Rx = (R2*R3)/R1 \n ');
printf('Inductance Lx = R2*R3*C \n ');
printf('Capacitance Cx = (C*R3)/R1 \n ')
|