blob: 2e83abc816c11323aa466bb69372feb5ca5091fc (
plain)
1
2
3
4
5
6
7
8
|
l1=8;
l2=12;
disp("Part a");
l_1=l1+l2;
disp("the total inductance (in mH) is"); disp(l_1);
disp("Part b");
l_2=l1*l2/(l1+l2);
disp("the total inductance (in mH) is"); disp(l_2);
|