spray (version 1.0)

Extract.spray: Extract or Replace Parts of a spray

Description

Extract or replace subsets of sprays.

Usage

# S3 method for spray
[(S, …, drop=FALSE)
# S3 method for spray
[(S, index, …) <- value

Arguments

S
A spray object
index
elements to extract or replace
value
replacement value
...
Further arguments
drop
Boolean, with default FALSE meaning to return a spray object and TRUE meaning to drop the spray structure and return a numeric vector

Details

These methods should work as expected, although the off-by-one issue might be a gotcha.

If drop is TRUE, a numeric vector is returned but the elements may be in any order.

Examples

Run this code
a <- spray(diag(5))
a[rbind(rep(1,5))] <- 5

a[3,4,5,3,1]  # the NULL polynomial

a[0,1,0,0,0]
a[0,1,0,0,0,drop=TRUE]

a[2,3:5,4,3,3] <- 9


options(polyform = TRUE)   # print as a multivariate polynomial
a

options(polyform = FALSE)  # print is sparse array form
a



Run the code above in your browser using DataLab