image thumbnail

updated 9 months ago

Viterbi Decoder by Yogesh K Soniwal

Decoding of transmitted coded bit (using convolution code) at the receiver using Viterbi Algorithm (communication, viterbi algorithm, convolution code)

[next_state,output]=next_stage(current_state,input)

[prev_state,decoded_bit]=prev_stage(curr_state,distance_pre...

viterbi.m

image thumbnail

updated 3 years ago

Forward Viterbi Algorithm by David Conger

Forward Viterbi algorithm based on: http://en.wikipedia.org/wiki/Viterbi_algorithm (viterbi algorithm, hidden markov model, dynamic programming)

forward_viterbi(obs,states,start_p,trans_p,emit_p)

runViterbi.m

image thumbnail

updated almost 4 years ago

Most probable path using Viterbi algorithm by Gautam Shenoy

The script provided decodes a set of observations to find the corresponding hidden states of a hmm. (hmm, hidden markov model, most probable path)

myhmm1_viterbi.m

image thumbnail

updated 7 years ago

General Viterbi Algorithm by Jacob Shin

This function runs Viterbi algorithm given valid parameters and returns optimal path into a file (ou (viterbi, bioinformatics, computational biology)

getViterbi(Ptransition, Pemission, Pinitial, S, SeqTxt)

image thumbnail

updated almost 10 years ago

Soft Input Soft Output Viterbi Algorithm by Adrian Bohdanowicz

Implementation of the SISO Viterbi algorithm. (coding theory, turbo code, decoding)

sovadec( msg, llr, trl, win )

Contact us