This repository has been archived by the owner on Dec 11, 2021. It is now read-only.
forked from gorbit99/gorbit99.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
169 lines (166 loc) · 7.82 KB
/
index.html
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
<html>
<head>
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<table id="tasks">
<tr> <!-- Szisztematikus kód -->
<td>
<b>Szisztematikus kód</b>
</td>
<td>
Egy <input id="systematicErrorRate" /> bithibavalószínűségű rendszerben
adott egy bináris lineáris szisztematikus kód a következő kódszavakkal:<br>
(<input id="systematicCount" /> darab)<br>
<button onclick="systematicGen()">Generate!</button>
<div id="systematicCW" hidden>
<table id="systematicCodewords"></table>
<button onclick="systematicCalculate()">Calculate!</button>
</div>
<div id="systematicMats" hidden>
<br>
Ekkor a generátormátrix:
<table id="systematicGenMat" class="matrix result"></table>
<br>
És a paritásmátrix:
<table id="systematicParMat" class="matrix result"></table>
<br>
Ha a hibavektor <input id="systematicEV" /><br>
<button onclick="systematicCalcEV()">Calculate!</button><br>
<br>
Akkor ez a <input readonly style="background-color:lightyellow" id="systematicSV"/> szindrómavektor.<br>
<br>
Kódszavak ebben a csoportban:
<table id="systematicCWAnalyzed" class="matrix result" border="1px"></table>
</div>
</td>
</tr>
<tr> <!-- Hamming kód -->
<td>
<b>Hamming kód</b>
</td>
<td>
Adott egy (<input id="hammingN" />, <input id="hammingK" />) paraméterű hamming kód.<br>
<button onclick="hammingGenMats()">Generate!</button>
<div id="hammingMats" hidden>
<br>
<br>
Ekkor a generátormátrix:
<table class="matrix result" id="hammingGenMat"></table><br>
<br>
És a paritásellenörző mátrix:
<table class="matrix result" id="hammingParMat"></table>
</div>
</td>
</tr>
<tr> <!-- Reed-Solomon -->
<td>
<b>Reed-Solomon</b>
</td>
<td>
Egy Reed-Solomon kód GF(<input id="rsModulo" />) felett <input id="rsPrimitive" /> primitív elemmel,
amely minden <input id="rsError" /> hibát javít. <br>
<br>
<button onclick="rsCalc()">Calculate</button><br>
<div id="rsResults" hidden>
<br>
<table class="matrix result" readonly>
<tr>
<td>n:</td>
<td><input id="rsN" />
</tr>
<tr>
<td>k:</td>
<td><input id="rsK" />
</tr>
</table>
<br>
Generátor mátrix:<br>
<table class="matrix result" id="rsGenMat"></table></br>
<br>
Paritásellenörző mátrix:<br>
<table class="matrix result" id="rsParMat"></table></br>
<br>
<table class="matrix"><tr id="rsInput"></tr></table> bemenet hatására a
<table class="matrix result"><tr id="rsOutput"></tr></table> kódolást kapjuk.<br>
<button onclick="rsCalcOutput()">Calculate</button>
</div>
</td>
</tr>
<tr> <!-- Reed-Solomon Paritásból -->
<td>
<b>Reed-Solomon paritásból</b>
</td>
<td>
Adott a GF(<input id="revRSModulo" />) felett egy Reed-Solomon kód paritásellenörző mátrixa:<br>
(<input id="revRSRows" /> sor x <input id="revRSCols" /> oszlop) <br>
<button onclick="revRSGen()">Generate</button>
<br>
<br>
<div id="revRSResults" hidden>
<table id="revRSParMat" class="matrix"></table>
<button onclick="revRSCalcGen()">Calculate</button><br>
<br>
Ekkor a generátormátrix:<br>
<table id="revRSGenMat" class="matrix result"></table>
<br>
</div>
<div id="revRSDecoded" hidden>
Ha detekciós algoritmus után a
<table class="matrix"><tr id="revRSCodevector"></tr></table>
kódvektort detektáljuk, akkor a detektált üzenetvektor:
<table class="matrix result"><tr id="revRSMessage"></tr></table>
<button onclick="revRSDecode()">Decode</button>
</div>
</td>
</tr>
<tr> <!-- Lz78 encode-->
<td>
<b>Lz78 encode</b>
</td>
<td>
Adott bináris bemenet(<input id="lz78Input" type="text" />) <br>
<button onclick="lz78encode()">Generate</button>
<br>
<br>
<div id="lz78Results" hidden>
<p id="lz78out" class="matrix"></p>
</div>
</td>
</tr>
<tr> <!-- Ciklikus kódok -->
<td>
<b>Ciklikus kódok</b>
</td>
<td>
Adott egy ciklikus RS kód GF(<input id="cyclicMod" />) felett, ami minden <input id="cyclicErrors" /> hibát javít.
A primitív <input id="cyclicPrimitive" />.<br>
<button onclick="cyclicGenerate()">Generate!</button>
<div id="cyclicResults" hidden>
<br>
<table class="matrix result" readonly>
<tr>
<td>n:</td>
<td><input id="cyclicN" />
</tr>
<tr>
<td>k:</td>
<td><input id="cyclicK" />
</tr>
</table>
<br>
Generátor polinóm:<br>
<input id="cyclicGen" readonly style="background-color:lightyellow" />
Paritásellenörző polinóm:<br>
<input id="cyclicPar" readonly style="background-color:lightyellow" />
Kódpolinómot előállító shiftregiszter együtthatói:<br>
<input id="cyclicCodeShift" readonly style="background-color:lightyellow" />
Üzenetpolinómot előállító shiftregiszter együtthatói:<br>
<input id="cyclicMessage" readonly style="background-color:lightyellow" />
</div>
</td>
</tr>
</table>
</body>
</html>