Transpose: transpose

24-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 April 13, 2025, 5:08 p.m.

Related to Transpose in MPCR...