-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hey guys.
Im working on an assignment, where I want to design an AI for a mp3 player. The AI must be trained and designed with the use of a HMM method.
The mp3 player shall have the functionality of adapting to its user, by analyzing incoming biological sensor data, and from this data the mp3 player…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello! I Wonder if someone has used Markov Algorithm-based programming system or embedded facility in production or for scientific purpose.
I know about 'REFAL' programming language invented a thousand years ago, but it all seems to be dead, so..
Ref: http://en.wikipedia.org/wiki/Markov_algorithm
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I am looking for something like the 'msm' package, but for discrete Markov chains. For example, if I had a transition matrix defined as such
Pi <- matrix(c(1/3,1/3,1/3,
0,2/3,1/6,
2/3,0,1/2))
for states A,B,C. How can I simulate a Markov chain according to that transition matrix?
Thanks…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
My apologies if this is more of a statistics question than an R question. I am trying to estimate the following model in R.
y_t = mu0 (1 - S_t) + mu1 S_t + e_t e_t ~ N(0, sigma_t^2)
sigma_t^2 = sigma_0^2 (1 - S_t) + sigma_1^2 S_t
where mu_t = mu0 if S_t = 0, mu_t = mu1 if S_t = 1, and…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to create this Markov Chain in C#. I need to know if there is any other structure other than adjacency list which can work better in this situation. Also how can I use the existing .Net collection type to implement this.
>>> More