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/CH7/EX7.1/Example_7_1.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 413/CH7/EX7.1/Example_7_1.sce (limited to '413/CH7/EX7.1') diff --git a/413/CH7/EX7.1/Example_7_1.sce b/413/CH7/EX7.1/Example_7_1.sce new file mode 100644 index 000000000..69dee877d --- /dev/null +++ b/413/CH7/EX7.1/Example_7_1.sce @@ -0,0 +1,21 @@ +clc +clear +x=-3 +function a=f(x) + a=exp(x)+2-cos(x); +endfunction +h=1 + y=f(x) +y1=f(x+h) +while(abs(y-y1)>=0.00001) + y=f(x) + y1=f(x+h) + while(y>y1) + y=f(x) + y1=f(x+h) + T=[x+h, y1] + disp(T) + x=x+h + end + h=-h/4 + end \ No newline at end of file -- cgit