summaryrefslogtreecommitdiff
path: root/1076/CH9/EX9.1
diff options
context:
space:
mode:
Diffstat (limited to '1076/CH9/EX9.1')
-rwxr-xr-x1076/CH9/EX9.1/9_1.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1076/CH9/EX9.1/9_1.sce b/1076/CH9/EX9.1/9_1.sce
new file mode 100755
index 000000000..f0a41b5a1
--- /dev/null
+++ b/1076/CH9/EX9.1/9_1.sce
@@ -0,0 +1,25 @@
+clear;
+clc
+
+y=[0 1 (-.4*%i)
+0 2 (-.3*%i)
+1 2 (-.5*%i)]
+n=2
+e=3
+
+Y=zeros(n,n)
+
+for i=1:e
+ n1=real(y(i,1))
+ n2=real(y(i,2))
+ ynew=y(i,3)
+ if(n1==0)
+ Y(n2,n2)=Y(n2,n2)+ynew
+ else
+ Y(n1,n1)= Y(n1,n1)+ynew
+ Y(n1,n2)= Y(n1,n2)-ynew
+ Y(n2,n1)= Y(n2,n1)-ynew
+ Y(n2,n2)= Y(n2,n2)+ynew
+ end
+end
+disp(Y)