blob: 179e0f349e0301fa70cca984645fcb405b8f5a30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Determination of Directional Indices
clear;
clc;
printf("\tExample 3.6\n");
printf("\nThe procedure is summarised as :\n");
A=[' ','x','y','z';
'Projections','a/2','b','0c';
'In terms of a,b,c','1/2','1','0';
'Reduction','1','2','0'];
disp(A);
printf("\nEnclosure [1 2 0]\n");
//End
|