Learn R Programming

matlab2r (version 1.5.0)

isempty: Is Array Empty?

Description

Determine whether array is empty. An empty array, table, or timetable has at least one dimension with length 0, such as 0-by-0 or 0-by-5.

Usage

isempty(x)

Value

A logical value determining if x is empty

Arguments

x

array

Details

Emulates the behavior of the isempty function on Matlab

Examples

Run this code
isempty(array(dim = c(0, 2, 2)))
isempty(matrix(rep(NA, 4), 2))
isempty(matrix(rep(0, 4), 2))
isempty(as.factor(c(NA, NA)))
isempty(factor())
isempty(matrix(rep("", 3)))

Run the code above in your browser using DataLab