diff options
Diffstat (limited to '413/CH6/EX6.3/Table_6_2.sce')
-rw-r--r-- | 413/CH6/EX6.3/Table_6_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/413/CH6/EX6.3/Table_6_2.sce b/413/CH6/EX6.3/Table_6_2.sce new file mode 100644 index 000000000..0b393ef58 --- /dev/null +++ b/413/CH6/EX6.3/Table_6_2.sce @@ -0,0 +1,14 @@ +clc
+clear
+x=[0 0.1 0.2 0.3 0.4 ]
+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)
+
+end
+for i=1:5
+T=[x(1,i), y(1,i), B(1,i),C(1,i)]
+disp(T)
+end
\ No newline at end of file |