blob: 8d2d6832efc7280dc7b793ffc02ba4f1ac0e8115 (
plain)
1
2
3
4
5
6
7
8
9
|
//example-2.98 pg no-141
L1=37.5*10^-3;
M=63.75*10^-3;
K=0.85;
N1=250;
L2=((M/K)^2)/L1;
N2=250/((L1/L2)^0.5);
disp('i) L2 = '+string (L2)+' ');
disp('i) N2 = '+string (N2)+' ');
|