diff options
Diffstat (limited to '413/CH6/EX6.2/Table_6_1.sce')
-rw-r--r-- | 413/CH6/EX6.2/Table_6_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/413/CH6/EX6.2/Table_6_1.sce b/413/CH6/EX6.2/Table_6_1.sce new file mode 100644 index 000000000..d018aece6 --- /dev/null +++ b/413/CH6/EX6.2/Table_6_1.sce @@ -0,0 +1,11 @@ +clc
+clear
+x=[0 0.1 0.2 0.3 0.4 0.5 0.6]
+for i=1:7
+ A(1,i)=-1+1.*x(1,i)-1.5.*x(1,i).*x(1,i)+0.5.*x(1,i).*x(1,i).*x(1,i)-0.125.*x(1,i).*x(1,i).*x(1,i).*x(1,i)
+ B(1,i)=-3.*exp(-x(1,i))-2*x(1,i)+2
+end
+for i=1:7
+T=[x(1,i), A(1,i), B(1,i), B(1,i)-A(1,i)]
+disp(T)
+end
\ No newline at end of file |