Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
504 views

Viterbi decoder

Does anyone know for any good resource on the web or book where the explanation for Viterbi decoder or a tutorial on how to decode a received bit sequence by using trellis diagram could be found? ...
2
votes
2answers
1k views

New to functional programming [closed]

Hey, I'm really new to Haskell and have been using more classic programming languages my whole life. I have no idea what is going on here. I'm trying to make a very simple Viterbi algorithm ...
1
vote
0answers
25 views

Viterbi algorithm, unhardcode for general case Java

my task is to find the most probable sequences of words in a sentence using viterbi algorithm. The given sequence of states is here: I have to introduce initial probabilities and transition ...
0
votes
0answers
53 views

Viterbi algorithm for real-time applications

I know that given an HMM and an observation, Viterbi algorithm can guess the hidden states sequence that produce this observation. But what about the case you want to use it real-time? I mean finding ...
0
votes
1answer
272 views

Viterbi algorithm in linear time

I have a problem where given a Hidden Markov model and the states S I need to find an algorithm that returns the most probable path through the Hidden Markov model for a given sequence X in time ...
0
votes
2answers
937 views

Anyone has a working viterbi decoder source code with descriptions?

I am having trouble trying to understand some viterbi decoder source codes. I understand the concept and everything but I just don't get some of the calculations that appears in viterbi decoding as ...
-1
votes
2answers
157 views

Can anyone line out where I can get a step by step algorithm for viterbi decoder?

I have this Viterbi Decoder function code, which is quite lengthy and there are no comments labeling to help, and I want to try to understand it. So anyone can point me to an easy to understand ...