R/size.R

Defines functions isempty ndims nnz numel size

Documented in isempty ndims nnz numel size

##
##  s i z e . R  Matlab size, numel, ndims, and isempty functions
##


size <- function(x, k) {
	if (length(x) == 0)    sz <- 0
	else if (is.vector(x)) sz <- c(1, length(x))
	else if (is.array(x))  sz <- dim(x)
	else                   sz <- NULL

	if (!missing(k)) {
		if (k > length(sz)) sz <- 1
		else if (k >= 1)    sz <- sz[k]
		else
			stop("Requested dimension 'k' is out of range.")
	}
	return(sz)
}

numel <- function(x) {
	sz <- size(x)
	if (!is.null(sz)) prod(sz)
	else              return(NULL)
}

nnz <- function(x) {
    if (length(x) == 0) return(0)
    stopifnot(is.numeric(x) || is.complex(x))
    sum(x != 0)
}

ndims <- function(x) {
    if (length(x) == 0) nd <- 0
    else if (is.vector(x)) nd <- 1
    else if (is.array(x)) nd <- length(dim(x))
    else nd <- NA
    
    return(nd)
}

# ndims <- function(x) {
#   sz <- size(x)
#   if (!is.null(sz)) length(sz)
#   else              return(NULL)
# }

isempty <- function(x) {
	length(x) == 0
}

Try the pracma package in your browser

Any scripts or data that you put into this service are public.

pracma documentation built on March 19, 2024, 3:05 a.m.