File: isempty.R

package info (click to toggle)
r-cran-matlab 1.0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 640 kB
  • sloc: sh: 13; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 596 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
###
### $Id: isempty.R 22 2022-05-30 18:03:47Z proebuck $
###


##-----------------------------------------------------------------------------
test.isempty <- function(input, expected) {
    output <- do.call(getFromNamespace("isempty", "matlab"), input)
    identical(output, expected)
}

test.isempty(list(A = 1:3), FALSE)
test.isempty(list(A = numeric(0)), TRUE)
test.isempty(list(A = matrix(NA, nrow = 2, ncol = 2)), FALSE)
test.isempty(list(A = matrix(NA, nrow = 0, ncol = 2)), TRUE)
test.isempty(list(A = array(NA, c(2, 2, 2))), FALSE)
test.isempty(list(A = array(NA, c(2, 0, 2))), TRUE)