diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1332/CH13/EX13.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1332/CH13/EX13.6')
-rwxr-xr-x | 1332/CH13/EX13.6/13_6.pdf | bin | 0 -> 6009 bytes | |||
-rwxr-xr-x | 1332/CH13/EX13.6/13_6.sce | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/1332/CH13/EX13.6/13_6.pdf b/1332/CH13/EX13.6/13_6.pdf Binary files differnew file mode 100755 index 000000000..07b130004 --- /dev/null +++ b/1332/CH13/EX13.6/13_6.pdf diff --git a/1332/CH13/EX13.6/13_6.sce b/1332/CH13/EX13.6/13_6.sce new file mode 100755 index 000000000..1bcad51ee --- /dev/null +++ b/1332/CH13/EX13.6/13_6.sce @@ -0,0 +1,11 @@ +//Example 13.6
+//Extrapolation
+//Page no. 430
+clc;close;clear;
+x=[-0.8,-0.6,-0.4,-0.2,0,0.2,0.4,0.6,0.8];
+y=[0.2019,0.30119,0.44933,0.67032,1,1.49182,2.22554,3.32012,4.95303]
+for i=1:4
+ printf('\nh = %g\n',x(10-i))
+ y1=(y(10-i)-y(i))/(2*x(10-i))
+ printf('f1(0) = %g\n\n',y1)
+end
\ No newline at end of file |