summaryrefslogtreecommitdiff
path: root/964/CH7/EX7.8/7_8.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /964/CH7/EX7.8/7_8.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '964/CH7/EX7.8/7_8.sce')
-rwxr-xr-x964/CH7/EX7.8/7_8.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/964/CH7/EX7.8/7_8.sce b/964/CH7/EX7.8/7_8.sce
new file mode 100755
index 000000000..e0b7523ea
--- /dev/null
+++ b/964/CH7/EX7.8/7_8.sce
@@ -0,0 +1,19 @@
+clc;
+clear;
+function y=f(x)
+ y=x-cos(x)
+endfunction
+x1=0;
+if f(x1)<0 then
+ x2=x1+0.00001;
+ while f(x2)<0
+ x2=x2+0.00001;
+ end
+elseif x2=x1+0.00001;
+ while f(x2)>0
+ x2=x2+0.00001;
+ end
+else disp(x1,"The root is=")
+end
+x=x2-(x2-x1)*f(x2)/(f(x2)-f(x1));
+disp(x,"The root is=") \ No newline at end of file