summaryrefslogtreecommitdiff
path: root/215/CH17/EX17.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /215/CH17/EX17.9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '215/CH17/EX17.9')
-rwxr-xr-x215/CH17/EX17.9/ex17_9.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/215/CH17/EX17.9/ex17_9.sce b/215/CH17/EX17.9/ex17_9.sce
new file mode 100755
index 000000000..a8bbcac9a
--- /dev/null
+++ b/215/CH17/EX17.9/ex17_9.sce
@@ -0,0 +1,13 @@
+clc
+//Example 17.9
+//From figure 17.27
+//Writing the mesh equations
+disp('V1=5*I1+4*I2')
+disp('V2=4*I1+10*I2')
+//Arranging in the standard form
+//V1=h11*I1+h12*V2
+//I2=h21*I1+h22*V2
+//Therefore h parameters are
+h11=3.4;h12=0.4;h21=-0.4;h22=0.1;
+h=[h11 h12;h21 h22]
+disp(h) \ No newline at end of file