summaryrefslogtreecommitdiff
path: root/1673/CH9/EX9.1/9_1.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1673/CH9/EX9.1/9_1.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 '1673/CH9/EX9.1/9_1.sce')
-rwxr-xr-x1673/CH9/EX9.1/9_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1673/CH9/EX9.1/9_1.sce b/1673/CH9/EX9.1/9_1.sce
new file mode 100755
index 000000000..b0d6ed66e
--- /dev/null
+++ b/1673/CH9/EX9.1/9_1.sce
@@ -0,0 +1,11 @@
+//standard five point formula
+//example 9.1
+//page 350
+clc;clear;close;
+u2=5;u3=1;
+for i=1:3
+ u1=(u2+u3+6)/4;
+ u2=u1/2+5/2;
+ u3=u1/2+1/2;
+ printf(' the values are u1=%d\t u2=%d\t u3=%d\t\n\n',u1,u2,u3);
+end \ No newline at end of file