-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcombine_test.m
263 lines (248 loc) · 10.7 KB
/
combine_test.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
rng(1);
alphabetset = 'a':char('a'+3);%param to change
fixedlengthentropy=2;%param to change
%numOfStates=length(alphabetset)+1;
numOfStates=4;%param to change
%creates a markov source with random transition matrix
mc=mcmix(numOfStates,Zeros=2*numOfStates);
fprintf("Is my markov chain ergodic=%d\n",isergodic(mc));%tells whether the generated chain is ergodic or not
requiredmatchlength=5;%param to change%typical match length
windowsize=2^(requiredmatchlength*fixedlengthentropy);%approx typical set size
numofLetters=windowsize*8;%source length is 8 times the window size
X = simulate(mc,numofLetters);
mc.P;%(i,j) element specifies prob from ith state to jth state
xFix = asymptotics(mc);%each state probability q(s)
%H[X/S] calculation
entropy=0;
for j=1:numOfStates
H=0;
symbols = (1:numOfStates); % Alphabet vector
prob = mc.P(j,:); % alphabet probability vector at a given state
prob=prob(prob~=0);
%[dict,avglen] = huffmandict((1:length(prob)),prob);
%entropyPerState=avglen;%E[L]
entropyPerState=log2(prob)*transpose(-prob);%H[X/s]
entropy=entropy+xFix(j)*entropyPerState;% H[X/S]
end
%disp(entropy);
%creates a random symbol for each transition of state
%T=alphabetset(randi([1 length(alphabetset)],numOfStates,numOfStates))
%creates a symbol for each transition of state
T=[ 'abcd'
'abcd'
'abcd'
'abcd'];
source='';
for i=2:length(X)
%source=strcat(source,T(X(i-1),X(i)));%alphabetset(X(i)));
source(i-1)=T(X(i-1),X(i));
end
%source=num2str(transpose(X));
%source=source(~isspace(source));
%disp(source);
save('sourcevars.mat','source','entropy','alphabetset','mc','X','xFix','windowsize','T');
%simplot(mc,X);
%figure;
%graphplot(mc,'LabelEdges',true,'ColorEdges',true,'ColorNodes',true);
clear
load('sourcevars.mat');
windowstartptr=1;
windowendptr=windowsize;
encodeptr=1;
totalencodestr='';
%source string has to be greater than window size
assert(strlength(source)>windowsize,'source string length has to be greater than window size')
fprintf("LZ encoding started\n");
%filling the initial window for rcver
for i=1:windowsize
%matchedlength=1;
%ntobin=dec2bin(matchedlength,2*floor(log2(matchedlength))+1);
matchstr=source(encodeptr);
utobin=dec2bin(strfind(alphabetset,source(encodeptr))-1,ceil(log2(strlength(alphabetset))));
%torcver=strcat(ntobin,utobin);
torcver=utobin;
%totalencodestr=strcat(totalencodestr,torcver);
totalencodestr=append(totalencodestr,torcver);
encodeptr=encodeptr+1;
end
initialprefixlength=strlength(totalencodestr);
while encodeptr~=strlength(source)+1
hasMatchfound=0;
matchedlength=1;%length of the match
matchindex=1;%where match has occured in the window
matchstr='';%string being matched
%search by increasing the length of match str till window size
for complength=2:windowsize
out=[];%set of match indexes
if encodeptr+complength-1<=strlength(source)
%virtually window length will be till last but one index of match str
out=strfind(source(windowstartptr:windowendptr+complength-1),source(encodeptr:encodeptr+complength-1));
else
break;%implies no source str is present beyond this length for matching
end
if isempty(out)==1
break;%implies no match for this in window
else
hasMatchfound=1;%record the matched str details and proceed for a bigger length
matchedlength=complength;
if ismatrix(out)==true%implies multiple matches are found
matchindex=out(length(out));%taking the length closer to the window's end
else%implies single match is found
matchindex=out;
end
matchstr=source(encodeptr:encodeptr+complength-1);
end
end
if hasMatchfound
[torcver,windowstartptr,windowendptr]=encodeInp(matchedlength,matchindex,windowstartptr,windowsize,source,alphabetset,encodeptr);
else
[torcver,windowstartptr,windowendptr]=encodeInp(1,0,windowstartptr,windowsize,source,alphabetset,encodeptr);
end
%{
if hasMatchfound==1
matchstr;
ntobin=dec2bin(matchedlength,2*(floor(log2(matchedlength)))+1);%matched length is n %unary binary code
matchdistfromencptr=windowsize- matchindex+1;%calculating u
if matchdistfromencptr==windowsize
utobin=dec2bin(0,ceil(log2(windowsize)));%assigning zero to the highest value
else
utobin=dec2bin(matchdistfromencptr,ceil(log2(windowsize)));%fixed length encoding
end
torcver=strcat(ntobin,utobin);
%sliding the window
windowstartptr=windowstartptr+matchedlength;
if strlength(source)>=windowstartptr+windowsize-1
windowendptr=windowstartptr+windowsize-1;
else
windowendptr=strlength(source);
end
else%encoding using fixed length coding
complength=1;
matchedlength=1;%setting n to 1
matchstr=source(encodeptr);
ntobin=dec2bin(matchedlength,2*(floor(log2(matchedlength)))+1);%fixed length encoding
utobin=dec2bin(strfind(alphabetset,source(encodeptr))-1,ceil(log2(strlength(alphabetset))));%fixed length encoding
torcver=strcat(ntobin,utobin);
windowstartptr=windowstartptr+complength;
if strlength(source)>=windowstartptr+windowsize-1
windowendptr=windowstartptr+windowsize-1;
else
windowendptr=strlength(source);
end
end
%}
encodeptr=encodeptr+matchedlength;
%totalencodestr=strcat(totalencodestr,torcver);
totalencodestr=append(totalencodestr,torcver);
%Lmin=(strlength(totalencodestr))/(encodeptr)
end
torcver=totalencodestr;
%disp(totalencodestr)
Lmin=(strlength(torcver)-initialprefixlength)/(strlength(source)-windowsize);
%disp(Lmin);
save('Lmin.mat','Lmin','totalencodestr');
%this function converts n and u values in binary and updates window
%parameters
function [torcver,windowstartptr,windowendptr]=encodeInp(matchedlength,matchindex,windowstartptr,windowsize,source,alphabetset,encodeptr)
%matchedlength
ntobin=dec2bin(matchedlength,2*(floor(log2(matchedlength)))+1);%matched length is n %unary binary code
matchdistfromencptr=windowsize- matchindex+1;%calculating u
if matchedlength==1
utobin=dec2bin(strfind(alphabetset,source(encodeptr))-1,ceil(log2(strlength(alphabetset))));%fixed length encoding
else
if matchdistfromencptr==windowsize
utobin=dec2bin(0,ceil(log2(windowsize)));%assigning zero to the highest value
else
utobin=dec2bin(matchdistfromencptr,ceil(log2(windowsize)));%fixed length encoding
end
end
%torcver=strcat(ntobin,utobin);
torcver=append(ntobin,utobin);
%sliding the window
windowstartptr=windowstartptr+matchedlength;
if strlength(source)>=windowstartptr+windowsize-1
windowendptr=windowstartptr+windowsize-1;
else
windowendptr=strlength(source);
end
end
clearvars -except windowsize source torcver alphabetset Lmin
%filling rcver window
%rcverwindow=source(1:windowsize);
assert(strlength(source)~=0,'Generate source string')
assert(strlength(torcver)~=0,'Run encoder')
fprintf("LZ decoding started\n");
rcverwindow='';
for i=1:windowsize
currentparselength=0;
rcvedstr=alphabetset(bin2dec(torcver(1:ceil(log2(strlength(alphabetset)))))+1);
currentparselength=currentparselength+ceil(log2(strlength(alphabetset)));
rcverwindow=append(rcverwindow,rcvedstr);
rcvedstr=[];
torcver(1:currentparselength)=[];
end
totalrcvd=rcverwindow;
mlen=0;
totallength=0;
abc=0;
while ~isempty(torcver)
currentparselength=0;
k=strfind(torcver,'1');%finding the first 1 in unary binary code
e=k(1);%consider the nearest match for parsing%also indicates no. of zeros present in unary binary code
%parsing and decoding a match
if e==1%rcved match of length 1
currentparselength=currentparselength+1;%as n is 1
%decode based on fixed length coding from alphabet set
rcvedstr=alphabetset(bin2dec(torcver(2:ceil(log2(strlength(alphabetset)))+1))+1);
%parsed this length from encoded string
currentparselength=currentparselength+ceil(log2(strlength(alphabetset)));
else%decode n and u based on the location first 1 of n
%extending parse length till unary zeros
currentparselength=currentparselength+e-1;
%decoding n
lenatrcver=bin2dec(torcver(e:e*2-1));
%k=strfind(torcver(e*2:strlength(torcver)),'1');
%r=k(1);
%parsing and decoding u based on windowing size length
distatrcver=bin2dec(torcver(e*2:e*2+ceil(log2(windowsize))-1));
if distatrcver==0
distatrcver=windowsize;
end
%decoding the orginal str based on decoded n and u
if distatrcver<lenatrcver%if u < n implies that part of the string is sent and needs to be multiplied
rcvedstrmain=rcverwindow(windowsize-distatrcver+1:windowsize);
remlen=lenatrcver;
while remlen~=0
if remlen>=strlength(rcvedstrmain)
%add string present in window until the length to be
%added is less than u
rcvedstr=strcat(rcvedstr,rcvedstrmain);
remlen=remlen-strlength(rcvedstrmain);
else
%if length to be added is less than u only part of the
%string found in window has to be added
rcvedstr=strcat(rcvedstr,rcvedstrmain(1:remlen));
remlen=0;
end
end
rcvedstr;
else
rcvedstr=rcverwindow(windowsize-distatrcver+1:windowsize-distatrcver+lenatrcver);
end
currentparselength=currentparselength+ceil(log2(windowsize))+e;%extending parse to n,u pair
end
%adding the newly decoded str to the window
rcverwindow=append(rcverwindow,rcvedstr);
rcverwindow(1:strlength(rcvedstr))=[];
%adding to output string
totalrcvd=append(totalrcvd,rcvedstr);
%totallength=totallength+strlength(rcvedstr);
%abc=abc+1;
%mlen=totallength/abc
rcvedstr=[];
%deleting the parsed part from the binary string
torcver(1:currentparselength)=[];
end
totalrcvd;
isoutmatched=strcmp(totalrcvd,source);%check if decoded output matches with source
fprintf("\nIs decoded string matched with source=%d\n",isoutmatched);