blob: f88473a9ecae6464fa9aedf815514b2c957a7cb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Example No.6.11.
// Page No.190.
clc;clear;
l1 = 6*(1/2);
l2 = 6*(1/3);
l3 = (6*1/6);
disp('For the plane (231) the intercepts are (a/2),(b/3),(c/1)');
disp('Ratio of the intercepts made by (231) plane in simple cubic crystal is as follows :');
disp('l1:l2:l3 = 3:2:6');
//As there are no numerical steps and hence the display statement has been typed directly.
|