代码搜索:convolutional
找到约 698 项符合「convolutional」的源代码
代码结果 698
www.eeworm.com/read/382388/9032465
c encode27.c
/* Encode standard input in the r=1/2 K=7 standard convolutional code.
* Encoded output is big-endian, one byte per symbol, with 1 represented
* by 255 and 0 by 0
*/
#include
#include "v
www.eeworm.com/read/382388/9032485
c encode37.c
/* Encode standard input in the r=1/3 K=7 standard convolutional code.
* Encoded output is big-endian, one byte per symbol, with 1 represented
* by 255 and 0 by 0
*/
#include
#include "v
www.eeworm.com/read/354145/10382781
s sse2bfly29.s
/* Intel SIMD SSE2 implementation of Viterbi ACS butterflies
for 256-state (k=9) convolutional code
Copyright 2001 Phil Karn, KA9Q
This code may be used under the terms of the GNU Public L
www.eeworm.com/read/354135/10386858
s sse2bfly29.s
/* Intel SIMD SSE2 implementation of Viterbi ACS butterflies
for 256-state (k=9) convolutional code
Copyright 2001 Phil Karn, KA9Q
This code may be used under the terms of the GNU Public L
www.eeworm.com/read/159516/10644832
txt fano1.1.txt
Fano decoder v1.1
Copyright 1995 Phil Karn
This package includes an encoder and a soft-decision sequential
decoder for K=32, rate 1/2 convolutional codes. The decoder uses the
Fano algorithm.
Also i
www.eeworm.com/read/272244/10964428
m rsc_encode.m
function y = rsc_encode(g, x, end)
% Copyright Nov. 1998 Yufei Wu
% MPRG lab, Virginia Tech.
% for academic use only
% encodes a block of data x (0/1)with a recursive systematic
% convolutional code
www.eeworm.com/read/165343/7143959
m fanoalg.m
function a = fanoalg(r,k,n,nextstate,output,pc,Delta)
%
% The Fano algorithm for convolutional decoding
% r = [r(0), r(1), ... r(L-1)], where each r(j) is a column vector of length n
% k = number of
www.eeworm.com/read/165343/7143988
m stackalg.m
function a = stackalg(r,k,n,nextstate,output,pc)
%
% The stack algorithm for convolutional decoding
% r = [r(0), r(1), ... r(L-1)], where each r(j) is a column vector of length n
% k = number of inpu
www.eeworm.com/read/461382/7228304
c sisodecode.c
/* file: SisoDecode.c
Description: Soft-in/soft-out decoding algorithm for a convolutional code
The calling syntax is:
[output_u, output_c] = SisoDecode(input_u, input_c, g_encode
www.eeworm.com/read/456354/7351411
m viterbi.m
function [decoder_output,survivor_state,cumulated_metric]=viterbi(G,k,channel_output)
%VITERBI The Viterbi decoder for convolutional codes
% [decoder_output,survivor_state,cumulated_metric]=viterbi(G