Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
834 views

Hidden Markov Models

I want to get started on HMM's, but don't know how to go about it. Can people here, give me some basic pointers, where to look? More than just the theory, I like to do a lot of hands-on. So, would ...
4
votes
2answers
1k views

Finite State Machine compiler

What is the best Opensource FSM compiler which can generate c++ code ?
2
votes
5answers
362 views

How to convert my state machine to java?

Here is the normal way I would do things in C++: class object { public: enum { STATE_ACTIVE = 0, STATE_INACTIVE, OBJ_NUM_STATES, } int m_State; ...
1
vote
3answers
455 views

Threaded State Machines in Java

Is there a way of Holding a thread in a State waiting for changes? I mean wait tll something happend (change var, call method, etc..) perhaps it needs using Event Listeners, or synchronized ...
0
votes
1answer
79 views

state machine with self transition but different entry actions

I have a state machine, where S1--->inp X, guard condition = Y---->S1 (self transition to S1 after executing, action1() S1--->inp X, guard condition = !Y---->S1 (self transition S1 after ...
0
votes
2answers
168 views

References on statemachine optimization and code generation?

As a follow-up to my state machines as a C++-like language extension question, I'd like some more help. My compiler has been extended to parse my state machine extensions and now I'm beginning ...