I need to work with RcppParallel::RMatrix. Previously I worked with Rcpp only. But now for RcppParallel I need a documention Like What Rcpp has.
For Example
I Rcpp::NumericMatrix We can select a row or column with placeholder "_" like this:
NumericMatrix new = OldMatrix(_,1);
But I want to know How Can Do same for RcppParallel::RMatrix?
Thank for any help.
RcppParallel is focused on iterators, and it offers the
RMatrix::ColumnandRMatrix::Rowclasses that provide iterators for individual columns and rows: