blob: 93a20fad05baab6f4f768f01bc28e396866f1990 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
clear all;
h = 1;// Miller Indices
k = 1;// Miller Indices
l = 0;// Miller Indices
a = 1/h;
b = 1/k;
//c = 1/l; Division by zero
disp('The intercept made along Z-axis is infinity. It means that plane is paralle to Z axis')
|