Transpose: transpose

23-TransposeR Documentation

transpose

Description

Transpose an MPCR object.

Usage

## S4 method for signature 'Rcpp_MPCR'
t(x)

Arguments

x

An MPCR object.

Value

An MPCR object.

Examples

  
  library(MPCR)
  a <- matrix(1:20, nrow = 2)
  a_MPCR <- as.MPCR(a,2,10,"double")
  a_MPCR_transpose <- t(a_MPCR)
  

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

Related to Transpose in MPCR...