From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 413/CH6/EX6.4/Table_6_3.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 413/CH6/EX6.4/Table_6_3.sce (limited to '413/CH6/EX6.4/Table_6_3.sce') 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 -- cgit