Metadata: Metadata functions

26-MetadataR Documentation

Metadata functions

Description

Metadata functions.

Usage

## S4 method for signature 'Rcpp_MPCR'
storage.mode(x)
## S4 method for signature 'Rcpp_MPCR'
typeof(x)
## S4 method for signature 'Rcpp_MPCR'
MPCR.object.size(x)
## S4 method for signature 'Rcpp_MPCR'
MPCR.ChangePrecision(x,precision)

Arguments

x

An MPCR object.

precision

String with the required precision.

Value

Prints/change metadata about an MPCR object.

Examples


  library(MPCR)

  x <- as.MPCR(1:20,precision="double")
  typeof(x)
  MPCR.ChangePrecision(x,"single")
  MPCR.is.single(x) #True


MPCR documentation built on April 13, 2025, 5:08 p.m.

Related to Metadata in MPCR...