Skip to content

Commit

Permalink
Merge pull request #221 from stan-dev/update-hmm-example
Browse files Browse the repository at this point in the history
update hmm-example.Rmd to new syntax
  • Loading branch information
WardBrian authored Sep 12, 2023
2 parents 90f9461 + c8c0b27 commit 50b5378
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions knitr/hmm-example/hmm-example.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ of the initial state. Posterior draws from the hidden states can be computed
separately.

A more complete mathematical definition of the HMM model and function interface
is given in the [Hidden Markov Models](https://mc-stan.org/docs/2_24/functions-reference/hidden-markov-models.html)
is given in the [Hidden Markov Models](https://mc-stan.org/docs/functions-reference/hidden-markov-models.html)
section of the Function Reference Guide.

There are three functions
Expand Down Expand Up @@ -120,7 +120,7 @@ The data is the previously generated sequence of $N$ measurements:
```{stan, output.var = "", eval = FALSE}
data {
int N; // Number of observations
real y[N];
array[N] real y;
}
```

Expand Down Expand Up @@ -267,7 +267,7 @@ can be generated with `hmm_latent_rng`:

```{stan, output.var = "", eval = FALSE}
generated quantities {
int[N] y_sim = hmm_latent_rng(log_omega, Gamma, rho)
array[N] int y_sim = hmm_latent_rng(log_omega, Gamma, rho);
}
```

Expand Down

0 comments on commit 50b5378

Please sign in to comment.