diff options
Diffstat (limited to '3673/CH10/EX10.9/Ex10_9.sce')
-rw-r--r-- | 3673/CH10/EX10.9/Ex10_9.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3673/CH10/EX10.9/Ex10_9.sce b/3673/CH10/EX10.9/Ex10_9.sce new file mode 100644 index 000000000..fe956f74e --- /dev/null +++ b/3673/CH10/EX10.9/Ex10_9.sce @@ -0,0 +1,9 @@ +//Example 10_9 page no:451
+clc;
+//given
+L=[1,2,//here L1+L2 is kept as L
+1,-2];
+a=[0.4,
+0.2];
+X=inv(L)*a;
+disp(X(2),"the mutual inductance of the coil is (in H)");
|