//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 = ");