-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusFal.m
88 lines (65 loc) · 1.96 KB
/
busFal.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
function mat=busFal(mat)
error=1;
while error>0
ref=mat;
%horizontal
for i=1:9
%posiciones y valores faltantes
AA=mat(i,:);
cant=numel(AA(AA==0));
posiciones=find(AA==0);
valores=zeros(size(posiciones));
cont=1;
for j=1:9
if numel(AA(AA==j))==0
valores(cont)=j;
cont=cont+1;
end
end
if cant>1 && cant==length(valores)
for k=1:length(posiciones)
BB=mat(:,posiciones(k));
control=zeros(size(posiciones));
for kk=1:length(valores)
control(kk)=numel(BB(BB==valores(kk)));
end
if numel(control(control==0))==1
mat(i,posiciones(k))=valores(control==0);
end
end
elseif cant==1 && length(valores)==1
mat(i,posiciones)=valores;
end
end
%vertical
for i=1:9
%posiciones y valores faltantes
AA=mat(:,i);
cant=numel(AA(AA==0));
posiciones=find(AA==0);
valores=zeros(size(posiciones));
cont=1;
for j=1:9
if numel(AA(AA==j))==0
valores(cont)=j;
cont=cont+1;
end
end
if cant>1 && cant==length(valores)
for k=1:length(posiciones)
BB=mat(posiciones(k),:);
control=zeros(size(posiciones));
for kk=1:length(valores)
control(kk)=numel(BB(BB==valores(kk)));
end
if numel(control(control==0))==1
mat(posiciones(k),i)=valores(control==0);
end
end
elseif cant==1 && length(valores)==1
mat(posiciones,i)=valores;
end
end
error=sum(sum(mat-ref));
end
end