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