代码搜索:encode_bit
找到约 89 项符合「encode_bit」的源代码
代码结果 89
www.eeworm.com/read/178871/9383088
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
% the rate is 1/n
% k is the constraint length
% m is the amount of memory
[n,k] = size(g);
m = k-1;
% determine the next output bit
for i=1:n
www.eeworm.com/read/358376/10190087
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
[n,k] = size(g);
m = k-1;
for i=1:n
output(i) = g(i,1)*input;
for j = 2:k
output(i) = xor(output(i),g(i,j)*state(j-1));
end
www.eeworm.com/read/461262/7230868
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
[n,k] = size(g);
m = k-1;
for i=1:n
output(i) = g(i,1)*input;
for j = 2:k
output(i) = xor(output(i),g(i,j)*state(j-1));
end
www.eeworm.com/read/438335/7732701
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
[n,k] = size(g);
m = k-1;
for i=1:n
output(i) = g(i,1)*input;
for j = 2:k
output(i) = xor(output(i),g(i,j)*state(j-1));
end
www.eeworm.com/read/317935/13493101
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
[n,k] = size(g);
m = k-1;
for i=1:n
output(i) = g(i,1)*input;
for j = 2:k
output(i) = xor(output(i),g(i,j)*state(j-1));
end
www.eeworm.com/read/308467/13700627
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
[n,k] = size(g);
m = k-1;
for i=1:n
output(i) = g(i,1)*input;
for j = 2:k
output(i) = xor(output(i),g(i,j)*state(j-1));
end
www.eeworm.com/read/263666/11348554
m huffman.m
function huffman_en_decode()
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%董婷婷07120080,通信0705班
%说明:文件中使用的子函数参考了www.mathworks.com上的代码
%子函数功能说明:hufflen(S)
www.eeworm.com/read/178871/9383072
m rsc_encode.m
function y = rsc_encode(g, x, terminated)
[n,K] = size(g);
m = K - 1;
if terminated>0
L_info = length(x);
L_total = L_info + m;
else
L_total = length(x);
L_info = L_total - m;
end
% initi
www.eeworm.com/read/321480/13404178
txt 查看顺序.txt
1 turbo_sys_demo.m
2 encoderm.m
3 res_encode.m
4 encode_bit.m
5 demultiplex.m
6 logmapo.m
7 trellis.m
8 bin_state.m
9 int_state.m
10 sova0.m
www.eeworm.com/read/312156/13617693
txt 查看顺序.txt
1 turbo_sys_demo.m
2 encoderm.m
3 res_encode.m
4 encode_bit.m
5 demultiplex.m
6 logmapo.m
7 trellis.m
8 bin_state.m
9 int_state.m
10 sova0.m