@@ -456,42 +456,6 @@ BEGIN_RCPP
456
456
return R_NilValue;
457
457
END_RCPP
458
458
}
459
- // sample_points_inclusion
460
- NumericMatrix sample_points_inclusion (const NumericMatrix& polymatrix, const int n_sam_pol);
461
- RcppExport SEXP _sits_sample_points_inclusion (SEXP polymatrixSEXP, SEXP n_sam_polSEXP) {
462
- BEGIN_RCPP
463
- Rcpp::RObject rcpp_result_gen;
464
- Rcpp::RNGScope rcpp_rngScope_gen;
465
- Rcpp::traits::input_parameter< const NumericMatrix& >::type polymatrix (polymatrixSEXP);
466
- Rcpp::traits::input_parameter< const int >::type n_sam_pol (n_sam_polSEXP);
467
- rcpp_result_gen = Rcpp::wrap (sample_points_inclusion (polymatrix, n_sam_pol));
468
- return rcpp_result_gen;
469
- END_RCPP
470
- }
471
- // sample_points_crossings
472
- NumericMatrix sample_points_crossings (const NumericMatrix& polymatrix, const int n_sam_pol);
473
- RcppExport SEXP _sits_sample_points_crossings (SEXP polymatrixSEXP, SEXP n_sam_polSEXP) {
474
- BEGIN_RCPP
475
- Rcpp::RObject rcpp_result_gen;
476
- Rcpp::RNGScope rcpp_rngScope_gen;
477
- Rcpp::traits::input_parameter< const NumericMatrix& >::type polymatrix (polymatrixSEXP);
478
- Rcpp::traits::input_parameter< const int >::type n_sam_pol (n_sam_polSEXP);
479
- rcpp_result_gen = Rcpp::wrap (sample_points_crossings (polymatrix, n_sam_pol));
480
- return rcpp_result_gen;
481
- END_RCPP
482
- }
483
- // sample_points_bin
484
- NumericMatrix sample_points_bin (const NumericMatrix& polymatrix, const int n_sam_pol);
485
- RcppExport SEXP _sits_sample_points_bin (SEXP polymatrixSEXP, SEXP n_sam_polSEXP) {
486
- BEGIN_RCPP
487
- Rcpp::RObject rcpp_result_gen;
488
- Rcpp::RNGScope rcpp_rngScope_gen;
489
- Rcpp::traits::input_parameter< const NumericMatrix& >::type polymatrix (polymatrixSEXP);
490
- Rcpp::traits::input_parameter< const int >::type n_sam_pol (n_sam_polSEXP);
491
- rcpp_result_gen = Rcpp::wrap (sample_points_bin (polymatrix, n_sam_pol));
492
- return rcpp_result_gen;
493
- END_RCPP
494
- }
495
459
// C_max_sampling
496
460
DataFrame C_max_sampling (const NumericVector& x, int nrows, int ncols, int window_size);
497
461
RcppExport SEXP _sits_C_max_sampling (SEXP xSEXP, SEXP nrowsSEXP, SEXP ncolsSEXP, SEXP window_sizeSEXP) {
@@ -506,22 +470,6 @@ BEGIN_RCPP
506
470
return rcpp_result_gen;
507
471
END_RCPP
508
472
}
509
- // bayes_smoother
510
- arma::mat bayes_smoother (const arma::mat& m, const arma::uword m_nrow, const arma::uword m_ncol, const arma::mat& w, const arma::mat& sigma, const double neigh_fraction);
511
- RcppExport SEXP _sits_bayes_smoother (SEXP mSEXP , SEXP m_nrowSEXP, SEXP m_ncolSEXP, SEXP wSEXP, SEXP sigmaSEXP, SEXP neigh_fractionSEXP) {
512
- BEGIN_RCPP
513
- Rcpp::RObject rcpp_result_gen;
514
- Rcpp::RNGScope rcpp_rngScope_gen;
515
- Rcpp::traits::input_parameter< const arma::mat& >::type m (mSEXP );
516
- Rcpp::traits::input_parameter< const arma::uword >::type m_nrow (m_nrowSEXP);
517
- Rcpp::traits::input_parameter< const arma::uword >::type m_ncol (m_ncolSEXP);
518
- Rcpp::traits::input_parameter< const arma::mat& >::type w (wSEXP);
519
- Rcpp::traits::input_parameter< const arma::mat& >::type sigma (sigmaSEXP);
520
- Rcpp::traits::input_parameter< const double >::type neigh_fraction (neigh_fractionSEXP);
521
- rcpp_result_gen = Rcpp::wrap (bayes_smoother (m, m_nrow, m_ncol, w, sigma, neigh_fraction));
522
- return rcpp_result_gen;
523
- END_RCPP
524
- }
525
473
// bayes_var
526
474
arma::mat bayes_var (const arma::mat& m, const arma::uword m_nrow, const arma::uword m_ncol, const arma::mat& w, const double neigh_fraction);
527
475
RcppExport SEXP _sits_bayes_var (SEXP mSEXP , SEXP m_nrowSEXP, SEXP m_ncolSEXP, SEXP wSEXP, SEXP neigh_fractionSEXP) {
@@ -679,11 +627,7 @@ static const R_CallMethodDef CallEntries[] = {
679
627
{" _sits_C_temp_iqr" , (DL_FUNC) &_sits_C_temp_iqr, 1 },
680
628
{" _sits_rlang_env_unlock" , (DL_FUNC) &_sits_rlang_env_unlock, 1 },
681
629
{" _sits_rlang_env_lock" , (DL_FUNC) &_sits_rlang_env_lock, 1 },
682
- {" _sits_sample_points_inclusion" , (DL_FUNC) &_sits_sample_points_inclusion, 2 },
683
- {" _sits_sample_points_crossings" , (DL_FUNC) &_sits_sample_points_crossings, 2 },
684
- {" _sits_sample_points_bin" , (DL_FUNC) &_sits_sample_points_bin, 2 },
685
630
{" _sits_C_max_sampling" , (DL_FUNC) &_sits_C_max_sampling, 4 },
686
- {" _sits_bayes_smoother" , (DL_FUNC) &_sits_bayes_smoother, 6 },
687
631
{" _sits_bayes_var" , (DL_FUNC) &_sits_bayes_var, 5 },
688
632
{" _sits_bayes_smoother_fraction" , (DL_FUNC) &_sits_bayes_smoother_fraction, 6 },
689
633
{" _sits_smooth_sg" , (DL_FUNC) &_sits_smooth_sg, 4 },
0 commit comments