Commit 0ebc4e32 authored by Александр Мудрик's avatar Александр Мудрик
Browse files

Delete interleaving.m

parent 12739209
No related merge requests found
Showing with 0 additions and 14 deletions
+0 -14
inp=1:104;
temp=zeros(8,13);
count=1;
for i=1:size(temp,1)
for j=1:size(temp,2)
temp(i,j)=inp(count);
count=count+1;
end
end
temp(inp)
a=reshape(inp,13,8)'
b = a(inp);
b = reshape(b, 8, 13)'
b(1:size(b,1)*(size(b,2)))
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment