Concatenate: concatenate

08-ConcatenateR Documentation

concatenate

Description

c() function for MPCR objects.

Usage

## S4 method for signature 'Rcpp_MPCR'
MPCR.Concatenate(x)

Arguments

x

List of MPCR objects.

Value

MPCR object containing values from all objects in the list.

Examples

library(MPCR)
x <- as.MPCR(1:20,precision="single")
y <- as.MPCR(1:20,precision="single")
list <- c(x,y)
new_obj <- MPCR.Concatenate(list)

MPCR documentation built on Aug. 23, 2026, 5:10 p.m.

Related to Concatenate in MPCR...