Learn R Programming

PRIST (version 0.925)

Drop: Drop specified dimension from an array

Description

Like drop(x) but only dropping specified dimensions. There is no testing that the specified dimensions are actually singletons.

Usage

Drop(x, d)

Arguments

x

array of at least d dimensions

d

dimension(s) to drop

Value

array x

Examples

Run this code
# NOT RUN {
x = array(1:4, dim=c(1, 2, 1, 2))
dx = Drop(x, 1)
stopifnot(all(dim(dx)==c(2,1,2)))
# }

Run the code above in your browser using DataLab