Матричные операции с Rcpp немного не хватает в лучшую или худшую сторону.
Любая глубокая матричная работа должна выполняться с RcppArmadillo или RcppEigen .
Пример реализации:
#include <RcppArmadillo.h>
// [[Rcpp::depends(RcppArmadillo)]]
// [[Rcpp::export]]
arma::mat matrix_fill_single_col() {
// Setup X matrix
arma::mat X = arma::zeros<arma::mat>(5, 10);
// Generate random values from exponential and save into a vector.
arma::vec y = Rcpp::as<arma::vec>(Rcpp::rexp(4, 1));
// Fill the fourth column in X (Recall: C++ indexes start at 0 not 1)
X.submat(0, 3, 3, 3) = y;
// Or...
// X.col(3) = y;
return X;
}
Test
matrix_fill_single_col()
# [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
# [1,] 0 0 0 0.2685970 0 0 0 0 0 0
# [2,] 0 0 0 1.6018346 0 0 0 0 0 0
# [3,] 0 0 0 0.6467853 0 0 0 0 0 0
# [4,] 0 0 0 0.6655340 0 0 0 0 0 0
# [5,] 0 0 0 0.0000000 0 0 0 0 0 0