Learn R Programming

gmp (version 0.4-8)

Extract: Extract or Replace Parts of an Object

Description

Operators acting on vectors, arrays and lists to extract or replace subsets.

Usage

c.bigz(...,recursive = FALSE)
rep.bigz(x,times,...)

Arguments

x
Object or vector of class bigz
...
Additional parameters
times
Integer
recursive
Unused

Examples

Run this code
a <- as.bigz(123)
  a[2 ] <- a[ 1]

  ## create a vector of 3 a
  c(a,a,a)

  ## repeate a 5 times
  rep(a,5)

  ##_with matrix
  m =  matrix.bigz(1:6,3)

  ## this do the same:
  m[1,]
  m[1]
  m[-c(2,3),]
  m[-c(2,3)]
  m[c(TRUE,FALSE,FALSE)]

  ##_modification on matrix
  m[2,-1] <- 11

Run the code above in your browser using DataLab