Scale: scale

19-ScaleR Documentation

scale

Description

Center or scale an MPCR object.

Usage

## S4 method for signature 'Rcpp_MPCR'
scale(x, center, scale)

Arguments

x

An MPCR object.

center, scale

Logical or MPCR objects.

Value

An MPCR matrix.

Examples

  
  library(MPCR)
    input <-as.MPCR(1:50,precision="single")
    input$ToMatrix(5, 10)
    temp_center_scale <- as.MPCR(1:10,precision="double")
    z <- scale(x=input, center=FALSE, scale=temp_center_scale)


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

Related to Scale in MPCR...