R/numel.R

Defines functions numel

## Function written to match MATLAB function
## Author: Andrew Hooker

numel <- function(arr){
    return(prod(size(arr)))
}
andrewhooker/PopED documentation built on Nov. 23, 2023, 1:37 a.m.