-
Notifications
You must be signed in to change notification settings - Fork 4
/
infoue-3.m
171 lines (132 loc) · 3.94 KB
/
infoue-3.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
% Aufgabe 3.2.2 und 3.2.3
function sr2 = shiftSR (sr,mu)
% Es wurde keine for-Schelife priogrammiert, sondern
% sofort die folgende Lösung:
sr2=( xor([sr 0],mu*sr(1,1)) ) (:,2:length(sr)+1);
% Die Register werden um 1 veschoben und je nach
% erstem Register mit mu ge-xor-t. Dann wird die
% erste Stelle abgeschnitten. Das Programm
% benötigt 31ms.
end
function aufgabe2und3
tic % Zeit ab hier zählen
polynom=[1,0,1,1]; % M(u)
initialzustand=[0,0,1];
register=initialzustand;
disp "Registerverlauf:";
for i=0:16 % Die ersten 17 Takte
% Ausgabe des Registerinhalts
disp(strcat("Takt",sprintf(" %02d",i),", Register: ",num2str(register)))
% Ein Takt auf den Registern ausführen:
register=shiftSR(register,polynom);
end
toc
end
aufgabe2und3
% Aufgabe 3.2.4
function aufgabe4
polynom=[1 1 zeros(1,29) 1]; % u^31+u^30+1
initialzustand=[zeros(1,30) 1];
register=initialzustand;
disp "Zufallszahlen:";
% 5000x verschieben
for i=1:5000
register=shiftSR(register,polynom);
end
% Die zahn Zufallszahlen ausgeben:
for k=1:10
achtBitZufallszahl=zeros(1,8); % hier bauen
% Jeweils die letzten Stellen hinein schreiben:
for i=1:8
achtBitZufallszahl(1,i)=register(1,length(register));
% und weiter verschieben:
register=shiftSR(register,polynom);
end
% Zufallszahl ausgeben:
achtBitZufallszahl
end
end
% Dies ist kein echter Zufallsgenerator, da
% er immer die selbe Zahlenfolge ausgibt.
aufgabe4
% Aufgabe 3.3.1
function polytext = polyprint(poly1)
polytext=""; % Mit leerem String starten
for i=1:length(poly1) % Koeffizienten durchgehen
if(poly1(1,i)) % Wenn Koeffizient nicht null
if(poly1(1,i)==1) % Wenn K. = 1
% Ausgabe ohne Koeffizient
if(i==length(poly1)) % Bei u^0 nur K.
polytext=[polytext,sprintf("%d",poly1(1,i))];
elseif(i==length(poly1)-1) % Bei u^1 nur u
polytext=[polytext,sprintf("u")];
else % Sonst u^(r-i)
polytext=[polytext,sprintf("u^%d",length(poly1)-i)];
end
else % Sonst mit Koeffizient ausgeben
if(i==length(poly1))
polytext=[polytext,sprintf("%d",poly1(1,i))];
elseif(i==length(poly1)-1)
polytext=[polytext,sprintf("%du",poly1(1,i))];
else
polytext=[polytext,sprintf("%du^%d",poly1(1,i),length(poly1)-i)];
end
end
% Wenn noch weitere Koeffizienten!=0 sind, plus anghängen
if(any(poly1(1,i+1:length(poly1))))
polytext=[polytext,"+"];
end
end
end
end
polyprint([12,1,14,0,0,1,1,1])
function [poly2, deg] = polyshorten(poly1)
poly2=poly1;
while poly2(1,1)==0 % solange führende Null
poly2=poly2(:,2:length(poly2)); % null abschneiden
end
deg=length(poly2)-1; % Grad ist nun Länge-1
end
[p,d] = polyshorten([0,0,2,3,1,0])
function produkt = polymult(poly1,poly2)
produkt=zeros(1,length(poly1)+length(poly2)-1);
for i=1:length(poly2)
produkt = produkt.+ ([zeros(1,i-1) poly1 zeros(1,length(poly2)-i)]*poly2(1,i));
end
end
% Aufgabe 3.3.2
a=mod(polymult([1,0,1],[1,1]),2)
a=polymult([3,2],[2,1,3])
function [quo,rest] = polydiv(poly1,poly2) % poly1/poly2
rest=poly1;
quo=[];
for i=1:length(poly1)-length(poly2)+1
faktor=(rest(1,i)/poly2(1,1));
rest=rest- [zeros(1,i-1) poly2 zeros(1,length(poly1)-length(poly2)-i+1)]*faktor;
quo=[quo faktor];
end
[rest,_]=polyshorten(rest);
end
[x,r]=polydiv([1 1 0 1],[1 0 1]);
quo=mod(x,2)
rest=mod(r,2)
% Aufgabe 3.3.3
function [period,poly2,poly3] = polyshift(poly1)
init=[zeros(1,length(poly1)-2) 1];
sr=init;
test=1;
period=0;
while(test)
sr=shiftSR (sr,poly1);
period=period+1;
test=!all(sr==init);
end
poly2=[1 zeros(1,period-1) 1];
[poly3,_]=polydiv(poly2,poly1);
poly3=mod(poly3,2);
end
[a,b,c] = polyshift([1 0 1 1])
% Zu Aufgabe 3.1
[pg2,_,_] = polyshift([1 1 0 0 1])
[pg3,_,_] = polyshift([1 1 1 1 1])
[pg4,_,_] = polyshift([1 0 0 0 0 1 1])