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 /1367/CH5/EX5.1/5_1.sce | |
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 '1367/CH5/EX5.1/5_1.sce')
-rwxr-xr-x | 1367/CH5/EX5.1/5_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1367/CH5/EX5.1/5_1.sce b/1367/CH5/EX5.1/5_1.sce new file mode 100755 index 000000000..c19ee0f42 --- /dev/null +++ b/1367/CH5/EX5.1/5_1.sce @@ -0,0 +1,17 @@ +//Find MILLER INDICES OF THE PLANE
+//Ex:5.1
+clc;
+clear;
+close;
+p=1;
+q=1/2;
+r=3;
+h=1/p;
+k=1/q;
+l=1/r;
+h1=3*h;
+k1=3*k;
+l1=3*l;
+disp(h1,"MILLER INDICES OF THE PLANE are h =");
+disp(k1,"k = ");
+disp(l1,"l = ");
\ No newline at end of file |