-
Notifications
You must be signed in to change notification settings - Fork 0
/
sudoku.m
1122 lines (692 loc) · 23 KB
/
sudoku.m
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
function varargout = sudoku(varargin)
% SUDOKU MATLAB code for sudoku.fig
% SUDOKU, by itself, creates a new SUDOKU or raises the existing
% singleton*.
%
% H = SUDOKU returns the handle to a new SUDOKU or the handle to
% the existing singleton*.
%
% SUDOKU('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in SUDOKU.M with the given input arguments.
%
% SUDOKU('Property','Value',...) creates a new SUDOKU or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before sudoku_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to sudoku_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
% instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES
% Edit the above text to modify the response to help sudoku
% Last Modified by GUIDE v2.5 29-Oct-2017 21:30:55
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @sudoku_OpeningFcn, ...
'gui_OutputFcn', @sudoku_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before sudoku is made visible.
function sudoku_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to sudoku (see VARARGIN)
% 定时器初始化
handles.ht = timer; % 定义定时器
set(handles.ht, 'ExecutionMode', 'FixedRate'); % ExecutionMode 执行的模式
set(handles.ht, 'Period', 1); % 周期
set(handles.ht, 'TimerFcn', {@dispTime, handles}); % 定时器执行函数
start(handles.ht); % 启动定时器
% 位置初始化
handles.selectLoc = 0;
% 填充计数器初始化
handles.fillNum = 0;
% 留空的数量
handles.dragNum = 20;
% 地图初始化
[gameMap, showMap] = genSudoku(handles.dragNum);
handles.gameMap = gameMap;
handles.showMap = showMap;
% 初始化显示
for aa = 1:81
if showMap(aa) ~= 0
eval(sprintf('set(handles.pushbutton%d, ''String'', ''%d'')', aa, showMap(aa)))
eval(sprintf('set(handles.pushbutton%d, ''Enable'', ''inactive'')', aa))
eval(sprintf('set(handles.pushbutton%d, ''ForegroundColor'', [0 0 0])', aa))
else
eval(sprintf('set(handles.pushbutton%d, ''String'', '''')', aa))
eval(sprintf('set(handles.pushbutton%d, ''Enable'', ''on'')', aa))
eval(sprintf('set(handles.pushbutton%d, ''ForegroundColor'', [0 0 1])', aa))
end
end
% Choose default command line output for sudoku
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes sudoku wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% 定时器的执行函数
function dispTime(hObject, eventdata, handles)
set(handles.text3, 'string', datestr(now))
% --- Outputs from this function are returned to the command line.
function varargout = sudoku_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
% 生成数独矩阵
function [gameMap, showMap] = genSudoku(dragNum)
gameMap = zeros(9);
gameMap(:,1) = randperm(9)';
mapInfo = cell(81, 1);
aa = 10;
debugCount = 0;
while aa <= 81
debugCount = debugCount + 1;
% 索引错误进入调试
if aa < 10
keyboard
end
if isempty(mapInfo{aa})
% 初次到达, 获取节点信息
temp = possibleNum(gameMap, aa);
mapInfo{aa} = temp;
else
% 回溯到达, 剪枝
temp = mapInfo{aa};
temp = temp(temp ~= gameMap(aa));
mapInfo{aa} = temp;
end
if isempty(temp)
% 节点无法填充, 回溯
gameMap(aa) = 0;
aa = aa - 1;
else
% 节点可以填充, 填充并前进
gameMap(aa) = temp(1);
aa = aa + 1;
end
end
dragLoc = randperm(81, dragNum);
showMap = gameMap;
showMap(dragLoc) = 0;
% 检查是否符合数独要求
function isUnique = checkUnique(gameMap, ind)
[x, y] = ind2sub([9, 9], ind);
isUnique = true;
% 检查行
ChosenRow = gameMap(x,gameMap(x,:)>0);
if length(unique(ChosenRow)) < length(ChosenRow)
isUnique = false;
end
% 检查列
ChosenCol = gameMap(gameMap(:,y)>0,y);
if length(unique(ChosenCol)) < length(ChosenCol)
isUnique = false;
end
% 检查区域
areaX = 3 * floor(x/3.01) + (1:3);
areaY = 3 * floor(y/3.01) + (1:3);
ChosenArea = reshape(gameMap(areaX, areaY), 1, []);
ChosenArea = ChosenArea(ChosenArea>0);
if length(unique(ChosenArea)) < length(ChosenArea)
isUnique = false;
end
% 每个位置允许填写的数字
function rsl = possibleNum(gameMap, ind)
[x, y] = ind2sub([9, 9], ind);
areaX = 3 * floor(x/3.01) + (1:3);
areaY = 3 * floor(y/3.01) + (1:3);
ChosenRow = gameMap(x,:);
ChosenCol = gameMap(:,y);
ChosenArea = reshape(gameMap(areaX, areaY), 1, []);
used = unique([ChosenRow, ChosenCol', ChosenArea]);
rsl = setdiff(1:9, used);
% --- Executes on button press in pushbuttonSent.
function pushbuttonSent_Callback(hObject, eventdata, handles)
% hObject handle to pushbuttonSent (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% 未选择, 不做响应
if handles.selectLoc == 0
return
end
% 获取输入
NumIn = str2num(get(handles.edit1, 'String'));
loc = handles.selectLoc;
% 输入不在1-9之间, 不做响应
if isempty(NumIn) || NumIn > 9 || NumIn < 1
return
end
% 显示
eval(sprintf('set(handles.pushbutton%d, ''String'', ''%d'')', loc, NumIn))
% 增加填充计数器
if handles.showMap(loc) == 0
handles.fillNum = handles.fillNum + 1;
end
% 记录填充数字
handles.showMap(loc) = NumIn;
% 如果所有位置被填充, 结束游戏
if handles.fillNum == handles.dragNum
% 检查填充是否正确
isRight = true;
for aa = 1:81
if ~checkUnique(handles.showMap, aa)
isRight = false;
break
end
end
if isRight
hlt = msgbox('');
texth = findall(hlt, 'Type', 'Text');
set(texth, 'FontSize', 16, 'HorizontalAlignment', 'center', 'String', '真慢╮(╯▽╰)╭')
set(texth, 'Position', [62.5 26 125])
pushbuttonh = findall(hlt, 'Style', 'pushbutton');
set(pushbuttonh, 'Callback', {@pushbuttonMsgClose_Callback, handles, hlt})
else
hlt = msgbox('');
texth = findall(hlt, 'Type', 'Text');
set(texth, 'FontSize', 16, 'HorizontalAlignment', 'center', 'String', '真菜')
set(texth, 'Position', [62.5 26 125])
pushbuttonh = findall(hlt, 'Style', 'pushbutton');
set(pushbuttonh, 'Callback', {@pushbuttonMsgClose_Callback, handles, hlt})
end
end
% Update handles structure
guidata(hObject, handles);
% --- Executes on button press in pushbuttonRestart.
function pushbuttonRestart_Callback(hObject, eventdata, handles)
% hObject handle to pushbuttonRestart (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% 位置初始化
handles.selectLoc = 0;
% 填充计数器初始化
handles.fillNum = 0;
% 获取留空数量输入
NumIn = str2num(get(handles.edit2, 'String'));
% 输入不在0-81之间, 提示错误
if isempty(NumIn) || NumIn > 81 || NumIn < 0
'pass';
else
handles.dragNum = NumIn;
end
% 地图初始化
[gameMap, showMap] = genSudoku(handles.dragNum);
handles.gameMap = gameMap;
handles.showMap = showMap;
% 初始化显示
for aa = 1:81
if showMap(aa) ~= 0
eval(sprintf('set(handles.pushbutton%d, ''String'', ''%d'')', aa, showMap(aa)))
eval(sprintf('set(handles.pushbutton%d, ''Enable'', ''inactive'')', aa))
eval(sprintf('set(handles.pushbutton%d, ''ForegroundColor'', [0 0 0])', aa))
else
eval(sprintf('set(handles.pushbutton%d, ''String'', '''')', aa))
eval(sprintf('set(handles.pushbutton%d, ''Enable'', ''on'')', aa))
eval(sprintf('set(handles.pushbutton%d, ''ForegroundColor'', [0 0 1])', aa))
end
end
% Choose default command line output for sudoku
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% --- Executes on button press in pushbuttonMsgClose.
function pushbuttonMsgClose_Callback(hObject, eventdata, handles, hlt)
% 重置游戏
pushbuttonRestart_Callback(handles.pushbuttonRestart, eventdata, handles)
% 关闭消息窗口
close(hlt)
function edit1_Callback(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit1 as text
% str2double(get(hObject,'String')) returns contents of edit1 as a double
% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function edit2_Callback(hObject, eventdata, handles)
% hObject handle to edit2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit2 as text
% str2double(get(hObject,'String')) returns contents of edit2 as a double
% --- Executes during object creation, after setting all properties.
function edit2_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function pushbutton1_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 1;
% Update handles structure
guidata(hObject, handles);
function pushbutton2_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 2;
% Update handles structure
guidata(hObject, handles);
function pushbutton3_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 3;
% Update handles structure
guidata(hObject, handles);
function pushbutton4_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 4;
% Update handles structure
guidata(hObject, handles);
function pushbutton5_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 5;
% Update handles structure
guidata(hObject, handles);
function pushbutton6_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 6;
% Update handles structure
guidata(hObject, handles);
function pushbutton7_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 7;
% Update handles structure
guidata(hObject, handles);
function pushbutton8_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 8;
% Update handles structure
guidata(hObject, handles);
function pushbutton9_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 9;
% Update handles structure
guidata(hObject, handles);
function pushbutton10_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 10;
% Update handles structure
guidata(hObject, handles);
function pushbutton11_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 11;
% Update handles structure
guidata(hObject, handles);
function pushbutton12_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 12;
% Update handles structure
guidata(hObject, handles);
function pushbutton13_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 13;
% Update handles structure
guidata(hObject, handles);
function pushbutton14_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 14;
% Update handles structure
guidata(hObject, handles);
function pushbutton15_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 15;
% Update handles structure
guidata(hObject, handles);
function pushbutton16_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 16;
% Update handles structure
guidata(hObject, handles);
function pushbutton17_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 17;
% Update handles structure
guidata(hObject, handles);
function pushbutton18_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 18;
% Update handles structure
guidata(hObject, handles);
function pushbutton19_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 19;
% Update handles structure
guidata(hObject, handles);
function pushbutton20_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 20;
% Update handles structure
guidata(hObject, handles);
function pushbutton21_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 21;
% Update handles structure
guidata(hObject, handles);
function pushbutton22_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 22;
% Update handles structure
guidata(hObject, handles);
function pushbutton23_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 23;
% Update handles structure
guidata(hObject, handles);
function pushbutton24_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 24;
% Update handles structure
guidata(hObject, handles);
function pushbutton25_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 25;
% Update handles structure
guidata(hObject, handles);
function pushbutton26_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 26;
% Update handles structure
guidata(hObject, handles);
function pushbutton27_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 27;
% Update handles structure
guidata(hObject, handles);
function pushbutton28_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 28;
% Update handles structure
guidata(hObject, handles);
function pushbutton29_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 29;
% Update handles structure
guidata(hObject, handles);
function pushbutton30_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 30;
% Update handles structure
guidata(hObject, handles);
function pushbutton31_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 31;
% Update handles structure
guidata(hObject, handles);
function pushbutton32_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 32;
% Update handles structure
guidata(hObject, handles);
function pushbutton33_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 33;
% Update handles structure
guidata(hObject, handles);
function pushbutton34_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 34;
% Update handles structure
guidata(hObject, handles);
function pushbutton35_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 35;
% Update handles structure
guidata(hObject, handles);
function pushbutton36_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 36;
% Update handles structure
guidata(hObject, handles);
function pushbutton37_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 37;
% Update handles structure
guidata(hObject, handles);
function pushbutton38_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 38;
% Update handles structure
guidata(hObject, handles);
function pushbutton39_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 39;
% Update handles structure
guidata(hObject, handles);
function pushbutton40_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 40;
% Update handles structure
guidata(hObject, handles);
function pushbutton41_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 41;
% Update handles structure
guidata(hObject, handles);
function pushbutton42_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 42;
% Update handles structure
guidata(hObject, handles);
function pushbutton43_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 43;
% Update handles structure
guidata(hObject, handles);
function pushbutton44_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 44;
% Update handles structure
guidata(hObject, handles);
function pushbutton45_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 45;
% Update handles structure
guidata(hObject, handles);
function pushbutton46_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 46;
% Update handles structure
guidata(hObject, handles);
function pushbutton47_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 47;
% Update handles structure
guidata(hObject, handles);
function pushbutton48_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 48;
% Update handles structure
guidata(hObject, handles);
function pushbutton49_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 49;
% Update handles structure
guidata(hObject, handles);
function pushbutton50_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 50;
% Update handles structure
guidata(hObject, handles);
function pushbutton51_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 51;
% Update handles structure
guidata(hObject, handles);
function pushbutton52_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 52;
% Update handles structure
guidata(hObject, handles);
function pushbutton53_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 53;
% Update handles structure
guidata(hObject, handles);
function pushbutton54_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 54;
% Update handles structure
guidata(hObject, handles);
function pushbutton55_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 55;
% Update handles structure
guidata(hObject, handles);
function pushbutton56_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 56;
% Update handles structure
guidata(hObject, handles);
function pushbutton57_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 57;
% Update handles structure
guidata(hObject, handles);
function pushbutton58_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 58;
% Update handles structure
guidata(hObject, handles);
function pushbutton59_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 59;
% Update handles structure
guidata(hObject, handles);
function pushbutton60_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 60;
% Update handles structure
guidata(hObject, handles);
function pushbutton61_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 61;
% Update handles structure
guidata(hObject, handles);
function pushbutton62_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 62;
% Update handles structure
guidata(hObject, handles);
function pushbutton63_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 63;
% Update handles structure
guidata(hObject, handles);
function pushbutton64_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 64;
% Update handles structure
guidata(hObject, handles);
function pushbutton65_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 65;
% Update handles structure
guidata(hObject, handles);
function pushbutton66_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 66;
% Update handles structure
guidata(hObject, handles);
function pushbutton67_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 67;
% Update handles structure
guidata(hObject, handles);
function pushbutton68_Callback(hObject, eventdata, handles)
% 选中坐标
handles.selectLoc = 68;