-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparameter_estimate.m
More file actions
442 lines (404 loc) · 14.5 KB
/
Copy pathparameter_estimate.m
File metadata and controls
442 lines (404 loc) · 14.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
% Project Two: Probabilistic Graphical Models
% Author: Xiujiao Gao
% Parameter Estimation
% Some explanations
% P_Cur_Px1Gx2x3 means the probability of x1 given x2 and x3 for Cursive one
% Example: 0 1 2 0.3 means the p(x1=0|x2=1,x3=2)=0.3
% P_Hand_Px1Gx2x3 means the probability of x1 given x2 and x3 for Hand print one
% P_Cur_Px1 means marginal probability of x1 for Cursive one
% P_Cur_Px1x5 means joint probability of P(x1,x2) for Cursive one
% P_Cur_Px1-9 means the joint probability of P(x1,x2,x3,x4,x5,x6,x7,x8,x9) for Cursive one
% P_Hand_Px1 means marginal probability of x1 for Hand print one
% P_Hand_Px1x5 means joint probability of P(x1,x2) for Hand print one
% P_Hand_Px1-9 means the joint probability of P(x1,x2,x3,x4,x5,x6,x7,x8,x9) for Hand print one
% All the version without 'P_' as prefix are num format version(such as Cur_Px1,Cur_Px2Gx1,Hand_Px1Gx5x6x8 and so on), which are
% used for estimation,sampling and inference
global Cur_Px1;global Cur_Px2;global Cur_Px3;global Cur_Px4;global Cur_Px5;global Cur_Px6;global Cur_Px7;global Cur_Px8;global Cur_Px9;
global Cur_Px2Gx1; global Cur_Px4Gx3x5; global Cur_Px7Gx6x8; global Cur_Px9Gx2x4x7;
global Hand_Px1;global Hand_Px2;global Hand_Px3;global Hand_Px4;global Hand_Px5;global Hand_Px6;global Hand_Px7;global Hand_Px8;global Hand_Px9;
global Hand_Px1Gx5x6x8; global Hand_Px2Gx3x5; global Hand_Px4Gx2x3; global Hand_Px5Gx3; global Hand_Px6Gx2x5; global Hand_Px7Gx3x4x6; global Hand_Px8Gx5x6;
% All variables are assumed to be independent
% Cursive writing
% feature demension
CursiveFeature =[4 5 3 5 4 4 4 5 3];
% load data
truthCursive = importdata('truthCursive.txt');
[rows,columns] = size(truthCursive.data);
Cur_Px1 = zeros(4,2);
for i=1:CursiveFeature(1)
Cur_Px1(i,1) = i-1;
temp = find(truthCursive.data(:,1)==Cur_Px1(i,1));
Cur_Px1(i,2)= length(temp)/rows;
end
P_Cur_Px1 = num2str(Cur_Px1)
Cur_Px2 = zeros(5,2);
for i=1:CursiveFeature(2)
Cur_Px2(i,1) = i-1;
temp = find(truthCursive.data(:,2)==Cur_Px2(i,1));
Cur_Px2(i,2)= length(temp)/rows;
end
P_Cur_Px2 = num2str(Cur_Px2)
Cur_Px3 = zeros(3,2);
for i=1:CursiveFeature(3)
Cur_Px3(i,1) = i-1;
temp = find(truthCursive.data(:,3)==Cur_Px3(i,1));
Cur_Px3(i,2)= length(temp)/rows;
end
P_Cur_Px3 = num2str(Cur_Px3)
Cur_Px4 = zeros(5,2);
for i=1:CursiveFeature(4)
Cur_Px4(i,1) = i-1;
temp = find(truthCursive.data(:,4)==Cur_Px4(i,1));
Cur_Px4(i,2)= length(temp)/rows;
end
P_Cur_Px4 = num2str(Cur_Px4)
Cur_Px5 = zeros(4,2);
for i=1:CursiveFeature(5)
Cur_Px5(i,1) = i-1;
temp = find(truthCursive.data(:,5)==Cur_Px5(i,1));
Cur_Px5(i,2)= length(temp)/rows;
end
P_Cur_Px5 = num2str(Cur_Px5)
Cur_Px6 = zeros(4,2);
for i=1:CursiveFeature(6)
Cur_Px6(i,1) = i-1;
temp = find(truthCursive.data(:,6)==Cur_Px6(i,1));
Cur_Px6(i,2)= length(temp)/rows;
end
P_Cur_Px6 = num2str(Cur_Px6)
Cur_Px7 = zeros(4,2);
for i=1:CursiveFeature(7)
Cur_Px7(i,1) = i-1;
temp = find(truthCursive.data(:,7)==Cur_Px7(i,1));
Cur_Px7(i,2)= length(temp)/rows;
end
P_Cur_Px7 = num2str(Cur_Px7)
Cur_Px8 = zeros(5,2);
for i=1:CursiveFeature(8)
Cur_Px8(i,1) = i-1;
temp = find(truthCursive.data(:,8)==Cur_Px8(i,1));
Cur_Px8(i,2)= length(temp)/rows;
end
P_Cur_Px8 = num2str(Cur_Px8)
Cur_Px9 = zeros(3,2);
for i=1:CursiveFeature(9)
Cur_Px9(i,1) = i-1;
temp = find(truthCursive.data(:,9)==Cur_Px9(i,1));
Cur_Px9(i,2)= length(temp)/rows;
end
P_Cur_Px9 = num2str(Cur_Px9)
% Hand-print writing
% feature demension
HandPrintFeature = [5 6 5 5 3 5 6 4 3];
% load data
truthHandprint = importdata('truthHandprint.txt');
[rowsHp,columnsHp] = size(truthHandprint.data);
Hand_Px1 = zeros(5,2);
for i=1:HandPrintFeature(1)
Hand_Px1(i,1) = i-1;
temp = find(truthHandprint.data(:,1)==Hand_Px1(i,1));
Hand_Px1(i,2)= length(temp)/rowsHp;
end
P_Hand_Px1 = num2str(Hand_Px1)
Hand_Px2 = zeros(6,2);
for i=1:HandPrintFeature(2)
Hand_Px2(i,1) = i-1;
temp = find(truthHandprint.data(:,2)==Hand_Px2(i,1));
Hand_Px2(i,2)= length(temp)/rowsHp;
end
P_Hand_Px2 = num2str(Hand_Px2)
Hand_Px3 = zeros(5,2);
for i=1:HandPrintFeature(3)
Hand_Px3(i,1) = i-1;
temp = find(truthHandprint.data(:,3)==Hand_Px3(i,1));
Hand_Px3(i,2)= length(temp)/rowsHp;
end
P_Hand_Px3 = num2str(Hand_Px3)
Hand_Px4 = zeros(5,2);
for i=1:HandPrintFeature(4)
Hand_Px4(i,1) = i-1;
temp = find(truthHandprint.data(:,4)==Hand_Px4(i,1));
Hand_Px4(i,2)= length(temp)/rowsHp;
end
P_Hand_Px4 = num2str(Hand_Px4)
Hand_Px5 = zeros(3,2);
for i=1:HandPrintFeature(5)
Hand_Px5(i,1) = i-1;
temp = find(truthHandprint.data(:,5)==Hand_Px5(i,1));
Hand_Px5(i,2)= length(temp)/rowsHp;
end
P_Hand_Px5 = num2str(Hand_Px5)
Hand_Px6 = zeros(5,2);
for i=1:HandPrintFeature(6)
Hand_Px6(i,1) = i-1;
temp = find(truthHandprint.data(:,6)==Hand_Px6(i,1));
Hand_Px6(i,2)= length(temp)/rowsHp;
end
P_Hand_Px6 = num2str(Hand_Px6)
Hand_Px7 = zeros(6,2);
for i=1:HandPrintFeature(7)
Hand_Px7(i,1) = i-1;
temp = find(truthHandprint.data(:,7)==Hand_Px7(i,1));
Hand_Px7(i,2)= length(temp)/rowsHp;
end
P_Hand_Px7 = num2str(Hand_Px7)
Hand_Px8 = zeros(4,2);
for i=1:HandPrintFeature(8)
Hand_Px8(i,1) = i-1;
temp = find(truthHandprint.data(:,8)==Hand_Px8(i,1));
Hand_Px8(i,2)= length(temp)/rowsHp;
end
P_Hand_Px8 = num2str(Hand_Px8)
Hand_Px9 = zeros(3,2);
for i=1:HandPrintFeature(9)
Hand_Px9(i,1) = i-1;
temp = find(truthHandprint.data(:,9)==Hand_Px9(i,1));
Hand_Px9(i,2)= length(temp)/rowsHp;
end
P_Hand_Px9 = num2str(Hand_Px9)
% Cursive writing based on graph(a)
% Cur_Px1,Cur_Px3,Cur_Px5,Cur_Px6 and Cur_Px8 already are computed
Cur_Px2Gx1 = zeros(4*5,3);
for i=1:20
Cur_Px2Gx1(i,1)=floor((i-1)/4);
Cur_Px2Gx1(i,2)=mod((i-1),4);
temp1 =0;
temp2 =0;
for j=1:rows
if(truthCursive.data(j,1)==Cur_Px2Gx1(i,2))
temp1 = temp1 +1;
end
if(truthCursive.data(j,1)==Cur_Px2Gx1(i,2) && truthCursive.data(j,2)==Cur_Px2Gx1(i,1))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Cur_Px2Gx1(i,3) =0;
else
Cur_Px2Gx1(i,3) = temp2/temp1;
end
end
P_Cur_Px2Gx1 = num2str(Cur_Px2Gx1)
Cur_Px4Gx3x5 = zeros(5*3*4,4);
for i = 1:5*3*4
Cur_Px4Gx3x5(i,1) = floor((i-1)/12);
Cur_Px4Gx3x5(i,2)= floor((i-12*Cur_Px4Gx3x5(i,1)-1)/4);
Cur_Px4Gx3x5(i,3)= mod((i-12*Cur_Px4Gx3x5(i,1)-1),4);
temp1 =0;
temp2 =0;
for j = 1:rows
if(truthCursive.data(j,3)==Cur_Px4Gx3x5(i,2) && truthCursive.data(j,5)==Cur_Px4Gx3x5(i,3))
temp1 = temp1 +1;
end
if((truthCursive.data(j,3)==Cur_Px4Gx3x5(i,2)) && (truthCursive.data(j,5)==Cur_Px4Gx3x5(i,3)) && (truthCursive.data(j,4)==Cur_Px4Gx3x5(i,1)))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Cur_Px4Gx3x5(i,4) =0;
else
Cur_Px4Gx3x5(i,4) = temp2/temp1;
end
end
P_Cur_Px4Gx3x5 = num2str(Cur_Px4Gx3x5)
Cur_Px7Gx6x8 = zeros(4*4*5,4);
for i = 1:4*4*5
Cur_Px7Gx6x8(i,1) = floor((i-1)/20);
Cur_Px7Gx6x8(i,2)= floor((i-20*Cur_Px7Gx6x8(i,1)-1)/5);
Cur_Px7Gx6x8(i,3)= mod((i-20*Cur_Px7Gx6x8(i,1)-1),5);
temp1 =0;
temp2 =0;
for j = 1:rows
if(truthCursive.data(j,6)==Cur_Px7Gx6x8(i,2) && truthCursive.data(j,8)==Cur_Px7Gx6x8(i,3))
temp1 = temp1 +1;
end
if((truthCursive.data(j,6)==Cur_Px7Gx6x8(i,2)) && (truthCursive.data(j,8)==Cur_Px7Gx6x8(i,3)) && (truthCursive.data(j,7)==Cur_Px7Gx6x8(i,1)))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Cur_Px7Gx6x8(i,4) =0;
else
Cur_Px7Gx6x8(i,4) = temp2/temp1;
end
end
P_Cur_Px7Gx6x8 = num2str(Cur_Px7Gx6x8)
Cur_Px9Gx2x4x7 = zeros(3*5*5*4,5);
for i = 1:3*5*5*4
Cur_Px9Gx2x4x7(i,1) = floor((i-1)/100);
Cur_Px9Gx2x4x7(i,2)= floor((i-100*Cur_Px9Gx2x4x7(i,1)-1)/20);
Cur_Px9Gx2x4x7(i,3)= floor((i-100*Cur_Px9Gx2x4x7(i,1)-20*Cur_Px9Gx2x4x7(i,2)-1)/4);
Cur_Px9Gx2x4x7(i,4)= mod((i-20*Cur_Px9Gx2x4x7(i,1)-20*Cur_Px9Gx2x4x7(i,2)-1),4);
temp1 =0;
temp2 =0;
for j = 1:rows
if(truthCursive.data(j,2)==Cur_Px9Gx2x4x7(i,2) && truthCursive.data(j,4)==Cur_Px9Gx2x4x7(i,3) && truthCursive.data(j,7)==Cur_Px9Gx2x4x7(i,4))
temp1 = temp1 +1;
end
if(truthCursive.data(j,2)==Cur_Px9Gx2x4x7(i,2) && truthCursive.data(j,4)==Cur_Px9Gx2x4x7(i,3) && truthCursive.data(j,7)==Cur_Px9Gx2x4x7(i,4) && truthCursive.data(j,9)==Cur_Px9Gx2x4x7(i,1))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Cur_Px9Gx2x4x7(i,5) =0;
else
Cur_Px9Gx2x4x7(i,5) = temp2/temp1;
end
end
P_Cur_Px9Gx2x4x7 = num2str(Cur_Px9Gx2x4x7)
% Hand-print writing based on graph(b)
Hand_Px5Gx3 = zeros(3*5,3);
for i=1:15
Hand_Px5Gx3(i,1)=floor((i-1)/5);
Hand_Px5Gx3(i,2)=mod((i-1),5);
temp1 =0;
temp2 =0;
for j=1:rowsHp
if(truthHandprint.data(j,3)==Hand_Px5Gx3(i,2))
temp1 = temp1 +1;
end
if(truthHandprint.data(j,3)==Hand_Px5Gx3(i,2) && truthHandprint.data(j,5)==Hand_Px5Gx3(i,1))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Hand_Px5Gx3(i,3) =0;
else
Hand_Px5Gx3(i,3) = temp2/temp1;
end
end
P_Hand_Px5Gx3 = num2str(Hand_Px5Gx3)
Hand_Px2Gx3x5 = zeros(6*5*3,4);
for i = 1:6*5*3
Hand_Px2Gx3x5(i,1) = floor((i-1)/15);
Hand_Px2Gx3x5(i,2)= floor((i-15*Hand_Px2Gx3x5(i,1)-1)/3);
Hand_Px2Gx3x5(i,3)= mod((i-15*Hand_Px2Gx3x5(i,1)-1),3);
temp1 =0;
temp2 =0;
for j = 1:rowsHp
if(truthHandprint.data(j,3)==Hand_Px2Gx3x5(i,2) && truthHandprint.data(j,5)==Hand_Px2Gx3x5(i,3))
temp1 = temp1 +1;
end
if((truthHandprint.data(j,3)==Hand_Px2Gx3x5(i,2)) && (truthHandprint.data(j,5)==Hand_Px2Gx3x5(i,3)) && (truthHandprint.data(j,2)==Hand_Px2Gx3x5(i,1)))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Hand_Px2Gx3x5(i,4) =0;
else
Hand_Px2Gx3x5(i,4) = temp2/temp1;
end
end
P_Hand_Px2Gx3x5 = num2str(Hand_Px2Gx3x5)
Hand_Px4Gx2x3 = zeros(5*6*5,4);
for i = 1:5*6*5
Hand_Px4Gx2x3(i,1) = floor((i-1)/30);
Hand_Px4Gx2x3(i,2)= floor((i-30*Hand_Px4Gx2x3(i,1)-1)/5);
Hand_Px4Gx2x3(i,3)= mod((i-30*Hand_Px4Gx2x3(i,1)-1),5);
temp1 =0;
temp2 =0;
for j = 1:rowsHp
if(truthHandprint.data(j,2)==Hand_Px4Gx2x3(i,2) && truthHandprint.data(j,3)==Hand_Px4Gx2x3(i,3))
temp1 = temp1 +1;
end
if((truthHandprint.data(j,2)==Hand_Px4Gx2x3(i,2)) && (truthHandprint.data(j,3)==Hand_Px4Gx2x3(i,3)) && (truthHandprint.data(j,4)==Hand_Px4Gx2x3(i,1)))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Hand_Px4Gx2x3(i,4) =0;
else
Hand_Px4Gx2x3(i,4) = temp2/temp1;
end
end
P_Hand_Px4Gx2x3 = num2str(Hand_Px4Gx2x3)
Hand_Px6Gx2x5 = zeros(5*6*3,4);
for i = 1:5*6*3
Hand_Px6Gx2x5(i,1) = floor((i-1)/18);
Hand_Px6Gx2x5(i,2)= floor((i-18*Hand_Px6Gx2x5(i,1)-1)/3);
Hand_Px6Gx2x5(i,3)= mod((i-18*Hand_Px6Gx2x5(i,1)-1),3);
temp1 =0;
temp2 =0;
for j = 1:rowsHp
if(truthHandprint.data(j,2)==Hand_Px6Gx2x5(i,2) && truthHandprint.data(j,5)==Hand_Px6Gx2x5(i,3))
temp1 = temp1 +1;
end
if((truthHandprint.data(j,2)==Hand_Px6Gx2x5(i,2)) && (truthHandprint.data(j,5)==Hand_Px6Gx2x5(i,3)) && (truthHandprint.data(j,6)==Hand_Px6Gx2x5(i,1)))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Hand_Px6Gx2x5(i,4) =0;
else
Hand_Px6Gx2x5(i,4) = temp2/temp1;
end
end
P_Hand_Px6Gx2x5 = num2str(Hand_Px6Gx2x5)
Hand_Px8Gx5x6 = zeros(4*3*5,4);
for i = 1:4*3*5
Hand_Px8Gx5x6(i,1) = floor((i-1)/15);
Hand_Px8Gx5x6(i,2)= floor((i-15*Hand_Px8Gx5x6(i,1)-1)/5);
Hand_Px8Gx5x6(i,3)= mod((i-15*Hand_Px8Gx5x6(i,1)-1),5);
temp1 =0;
temp2 =0;
for j = 1:rowsHp
if(truthHandprint.data(j,5)==Hand_Px8Gx5x6(i,2) && truthHandprint.data(j,6)==Hand_Px8Gx5x6(i,3))
temp1 = temp1 +1;
end
if((truthHandprint.data(j,5)==Hand_Px8Gx5x6(i,2)) && (truthHandprint.data(j,6)==Hand_Px8Gx5x6(i,3)) && (truthHandprint.data(j,8)==Hand_Px8Gx5x6(i,1)))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Hand_Px8Gx5x6(i,4) =0;
else
Hand_Px8Gx5x6(i,4) = temp2/temp1;
end
end
P_Hand_Px8Gx5x6 = num2str(Hand_Px8Gx5x6)
Hand_Px1Gx5x6x8 = zeros(5*3*5*4,5);
for i = 1:5*3*5*4
Hand_Px1Gx5x6x8(i,1) = floor((i-1)/60);
Hand_Px1Gx5x6x8(i,2)= floor((i-60*Hand_Px1Gx5x6x8(i,1)-1)/20);
Hand_Px1Gx5x6x8(i,3)= floor((i-60*Hand_Px1Gx5x6x8(i,1)-20*Hand_Px1Gx5x6x8(i,2)-1)/4);
Hand_Px1Gx5x6x8(i,4)= mod((i-20*Hand_Px1Gx5x6x8(i,1)-20*Hand_Px1Gx5x6x8(i,2)-1),4);
temp1 =0;
temp2 =0;
for j = 1:rowsHp
if(truthHandprint.data(j,5)==Hand_Px1Gx5x6x8(i,2) && truthHandprint.data(j,6)==Hand_Px1Gx5x6x8(i,3) && truthHandprint.data(j,8)==Hand_Px1Gx5x6x8(i,4))
temp1 = temp1 +1;
end
if(truthHandprint.data(j,5)==Hand_Px1Gx5x6x8(i,2) && truthHandprint.data(j,6)==Hand_Px1Gx5x6x8(i,3) && truthHandprint.data(j,8)==Hand_Px1Gx5x6x8(i,4) && truthHandprint.data(j,1)==Hand_Px1Gx5x6x8(i,1))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Hand_Px1Gx5x6x8(i,5) =0;
else
Hand_Px1Gx5x6x8(i,5) = temp2/temp1;
end
end
P_Hand_Px1Gx5x6x8 = num2str(Hand_Px1Gx5x6x8)
Hand_Px7Gx3x4x6 = zeros(6*5*5*5,5);
for i = 1:6*5*5*5
Hand_Px7Gx3x4x6(i,1) = floor((i-1)/125);
Hand_Px7Gx3x4x6(i,2)= floor((i-125*Hand_Px7Gx3x4x6(i,1)-1)/25);
Hand_Px7Gx3x4x6(i,3)= floor((i-125*Hand_Px7Gx3x4x6(i,1)-25*Hand_Px7Gx3x4x6(i,2)-1)/5);
Hand_Px7Gx3x4x6(i,4)= mod((i-125*Hand_Px7Gx3x4x6(i,1)-25*Hand_Px7Gx3x4x6(i,2)-1),5);
temp1 =0;
temp2 =0;
for j = 1:rowsHp
if(truthHandprint.data(j,3)==Hand_Px7Gx3x4x6(i,2) && truthHandprint.data(j,4)==Hand_Px7Gx3x4x6(i,3) && truthHandprint.data(j,6)==Hand_Px7Gx3x4x6(i,4))
temp1 = temp1 +1;
end
if(truthHandprint.data(j,3)==Hand_Px7Gx3x4x6(i,2) && truthHandprint.data(j,4)==Hand_Px7Gx3x4x6(i,3) && truthHandprint.data(j,6)==Hand_Px7Gx3x4x6(i,4) && truthHandprint.data(j,7)==Hand_Px7Gx3x4x6(i,1))
temp2 = temp2 +1;
end
end
if(temp1 ==0)
Hand_Px7Gx3x4x6(i,5) =0;
else
Hand_Px7Gx3x4x6(i,5) = temp2/temp1;
end
end
P_Hand_Px7Gx3x4x6 = num2str(Hand_Px7Gx3x4x6)