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)
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