Skip to contents

This function removes a specified dimension from a given object, such as a matrix or an array.

Usage

drop_dim(x, dimnum)

# S4 method for class 'NeuroSpace,numeric'
drop_dim(x, dimnum)

# S4 method for class 'NeuroSpace,missing'
drop_dim(x)

Arguments

x

The NeuroSpace object

dimnum

The dimension number to drop (if missing, drops the last dimension)

Value

An object of the same class as x with the specified dimension removed.

Examples

# Create a NeuroSpace object with dimensions (10, 10, 10)
x <- NeuroSpace(c(10, 10, 10), c(1, 1, 1))

# Drop the first dimension
x1 <- drop_dim(x, 1)

# Check the new dimensions
ndim(x1) == 2
#> [1] TRUE
dim(x1)[1] == 10
#> [1] TRUE