summaryrefslogtreecommitdiff
path: root/413/CH6/EX6.4/Table_6_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '413/CH6/EX6.4/Table_6_3.sce')
-rw-r--r--413/CH6/EX6.4/Table_6_3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/413/CH6/EX6.4/Table_6_3.sce b/413/CH6/EX6.4/Table_6_3.sce
new file mode 100644
index 000000000..b3ebebfad
--- /dev/null
+++ b/413/CH6/EX6.4/Table_6_3.sce
@@ -0,0 +1,18 @@
+clc
+clear
+x=[0 0.1 0.2 0.3 0.4 0.5]
+y(1,1)=-1
+for i=1:5
+ B(1,i)=(-2*x(1,i)-y(1,i))
+ C(1,i)=0.1*B(1,i)
+ y(1,i+1)=y(1,i)+C(1,i)
+ D(1,i)=y(1,i+1)
+ E(1,i)=0.1*B(1,i)
+ F(1,i)=0.1*(-2*x(1,i+1)-y(1,i+1))
+ G(1,i)=(E(1,i)+F(1,i))/2
+ y(1,i+1)=y(1,i)+G(1,i)
+end
+for i=1:5
+T=[x(1,i), y(1,i), C(1,i),D(1,i),F(1,i),G(1,i),y(1,i+1)]
+disp(T)
+end \ No newline at end of file