Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update hmm-example.Rmd to new syntax #221

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading