blob: ae5f26921dc6ef3213e5b0c2e89dac98b4cedbb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 16_13 page no:771
clc;
//given
Z11=3;
Z12=2;
Z21=2;
Z22=3;
Za=Z11-Z12;
Zb=Z11+Z12;
disp(Za,"the parameter Za of the lattice netwrok is (in ohm)");
disp(Zb,"the parameter Zb of the lattice netwrok is (in ohm)");
|