summaryrefslogtreecommitdiff
path: root/413/CH6/EX6.2/Table_6_1.sce
blob: d018aece6ea79b0a122172b60c6a55443138f4b0 (plain)
1
2
3
4
5
6
7
8
9
10
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