10-Bind | R Documentation |
rbind()
and cbind()
for MPCR objects.
## S4 method for signature 'Rcpp_MPCR'
MPCR.rbind(x,y)
## S4 method for signature 'Rcpp_MPCR'
MPCR.cbind(x,y)
x |
An MPCR object. |
y |
An MPCR object. |
An MPCR object, matching the data type of the highest precision input.
library(MPCR)
# create 2 MPCR matrix a,b
a <- as.MPCR(1:20,nrow=2,ncol=10,"single")
b <- as.MPCR(21:40,nrow=2,ncol=10,"double")
x <- MPCR.rbind(a,b)
y <- MPCR.cbind(a,b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.