Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 948d79b

Browse files
committed
update docs
1 parent 5ee4ade commit 948d79b

5 files changed

Lines changed: 59 additions & 27 deletions

File tree

‎R/RcppExports.R‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,6 @@ R_milstein <- function(x0, L, t, theta, drift_pntr, diffusion_pntr, ddiffusion_p
101101
.Call('_bssm_R_milstein', PACKAGE = 'bssm', x0, L, t, theta, drift_pntr, diffusion_pntr, ddiffusion_pntr, positive, seed)
102102
}
103103

104-
R_milstein_joint <- function(x0, L_c, L_f, t, theta, drift_pntr, diffusion_pntr, ddiffusion_pntr, positive, seed) {
105-
.Call('_bssm_R_milstein_joint', PACKAGE = 'bssm', x0, L_c, L_f, t, theta, drift_pntr, diffusion_pntr, ddiffusion_pntr, positive, seed)
106-
}
107-
108104
suggest_n_nongaussian <- function(model_, theta, candidates, replications, seed, model_type) {
109105
.Call('_bssm_suggest_n_nongaussian', PACKAGE = 'bssm', model_, theta, candidates, replications, seed, model_type)
110106
}

‎man/logLik.nongaussian.Rd‎

Lines changed: 49 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎man/priors.Rd‎

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/RcppExports.cpp‎

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -633,26 +633,6 @@ BEGIN_RCPP
633633
return rcpp_result_gen;
634634
END_RCPP
635635
}
636-
// R_milstein_joint
637-
double R_milstein_joint(const double x0, const unsigned int L_c, const unsigned int L_f, const double t, const arma::vec& theta, SEXP drift_pntr, SEXP diffusion_pntr, SEXP ddiffusion_pntr, bool positive, const unsigned int seed);
638-
RcppExport SEXP _bssm_R_milstein_joint(SEXP x0SEXP, SEXP L_cSEXP, SEXP L_fSEXP, SEXP tSEXP, SEXP thetaSEXP, SEXP drift_pntrSEXP, SEXP diffusion_pntrSEXP, SEXP ddiffusion_pntrSEXP, SEXP positiveSEXP, SEXP seedSEXP) {
639-
BEGIN_RCPP
640-
Rcpp::RObject rcpp_result_gen;
641-
Rcpp::RNGScope rcpp_rngScope_gen;
642-
Rcpp::traits::input_parameter< const double >::type x0(x0SEXP);
643-
Rcpp::traits::input_parameter< const unsigned int >::type L_c(L_cSEXP);
644-
Rcpp::traits::input_parameter< const unsigned int >::type L_f(L_fSEXP);
645-
Rcpp::traits::input_parameter< const double >::type t(tSEXP);
646-
Rcpp::traits::input_parameter< const arma::vec& >::type theta(thetaSEXP);
647-
Rcpp::traits::input_parameter< SEXP >::type drift_pntr(drift_pntrSEXP);
648-
Rcpp::traits::input_parameter< SEXP >::type diffusion_pntr(diffusion_pntrSEXP);
649-
Rcpp::traits::input_parameter< SEXP >::type ddiffusion_pntr(ddiffusion_pntrSEXP);
650-
Rcpp::traits::input_parameter< bool >::type positive(positiveSEXP);
651-
Rcpp::traits::input_parameter< const unsigned int >::type seed(seedSEXP);
652-
rcpp_result_gen = Rcpp::wrap(R_milstein_joint(x0, L_c, L_f, t, theta, drift_pntr, diffusion_pntr, ddiffusion_pntr, positive, seed));
653-
return rcpp_result_gen;
654-
END_RCPP
655-
}
656636
// suggest_n_nongaussian
657637
arma::vec suggest_n_nongaussian(const Rcpp::List model_, const arma::vec theta, const arma::vec candidates, const unsigned int replications, const unsigned int seed, const int model_type);
658638
RcppExport SEXP _bssm_suggest_n_nongaussian(SEXP model_SEXP, SEXP thetaSEXP, SEXP candidatesSEXP, SEXP replicationsSEXP, SEXP seedSEXP, SEXP model_typeSEXP) {
@@ -1303,7 +1283,6 @@ static const R_CallMethodDef CallEntries[] = {
13031283
{"_bssm_nonlinear_ekf_mcmc", (DL_FUNC) &_bssm_nonlinear_ekf_mcmc, 27},
13041284
{"_bssm_nonlinear_is_mcmc", (DL_FUNC) &_bssm_nonlinear_is_mcmc, 33},
13051285
{"_bssm_R_milstein", (DL_FUNC) &_bssm_R_milstein, 9},
1306-
{"_bssm_R_milstein_joint", (DL_FUNC) &_bssm_R_milstein_joint, 10},
13071286
{"_bssm_suggest_n_nongaussian", (DL_FUNC) &_bssm_suggest_n_nongaussian, 6},
13081287
{"_bssm_suggest_n_nonlinear", (DL_FUNC) &_bssm_suggest_n_nonlinear, 20},
13091288
{"_bssm_postcorrection_nongaussian", (DL_FUNC) &_bssm_postcorrection_nongaussian, 10},

‎vignettes/sde_model.Rmd‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ where $B_t$ is a Brownian motion and where $\mu$ and $\sigma$ are real valued fu
4343

4444
## Example
4545

46-
Discretely observed latent diffusion models can be constructed using the `ssm_sde` function, which takes pointers to `C++` functions defining the drift, diffusion, the derivative of the diffusion function, and the log-densities of the observations and the prior. As an example, let us consider an Ornstein–Uhlenbeck process
46+
Discretely observed latent diffusion models can be constructed using the `ssm_sde` function, which takes pointers to `C++` functions defining the drift, diffusion, the derivative of the diffusion function, the log-densities of the observations, and the log-prior. As an example, let us consider an Ornstein–Uhlenbeck process
4747
$$
4848
\textrm{d} \alpha_t = \rho (\nu - \alpha_t) \textrm{d} t + \sigma \textrm{d} B_t,
4949
$$

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /